diff --git a/src/flow/flow.controller.ts b/src/flow/flow.controller.ts index 90707a0..8159530 100644 --- a/src/flow/flow.controller.ts +++ b/src/flow/flow.controller.ts @@ -22,6 +22,8 @@ import { sortProjectId } from 'src/utils'; import { RemoveLastVoteDto, SetCoIDto } from './dto/bodies'; import { AgoraBallotPost } from 'src/rpgf5-data-import/submit'; import { projects } from 'src/rpgf5-data-import/all-projects-930'; +import { ProjectType } from '@prisma/client'; +import { badgeholders } from 'src/rpgf5-data-import/badgeholders'; export const getAllProjects = (category: number) => { switch (category) { @@ -203,6 +205,102 @@ export class FlowController { return 'Success'; } + @ApiOperation({ + summary: 'Used for a pairwise vote between two collections', + }) + @Get('/temp/finishers') + async findFinishers() { + const allUsers = await this.prismaService.user.findMany(); + + let count = 0; + + const progresses = []; + + for (let i = 0; i < allUsers.length; i++) { + const user = allUsers[i]; + + const userId = user.id; + const res = await this.prismaService.vote.findFirst({ + where: { + userId: userId, + }, + include: { project1: true }, + }); + if (!res) progresses.push({ userAddress: user.address, progress: 0 }); + const parentCollection = res?.project1.parentId; + + const [collection, votes, projects, allStars, projectCoIs] = + await Promise.all([ + this.prismaService.project.findUnique({ + where: { + id: parentCollection || -1, + type: { + in: [ProjectType.collection, ProjectType.compositeProject], + }, + }, + select: { name: true, id: true }, + }), + this.prismaService.vote.findMany({ + where: { + userId: userId, + project1: { parentId: parentCollection }, + project2: { parentId: parentCollection }, + }, + }), + this.prismaService.project.findMany({ + where: { + parentId: parentCollection || -1, + }, + }), + this.flowService.getUserProjectStars(userId, parentCollection || -1), + this.prismaService.projectCoI.findMany({ + where: { + project: { parentId: parentCollection }, + userId, + }, + }), + ]); + + // projects except those with conflict of interest + const allProjects = projects + .filter((item) => !projectCoIs.find((el) => el.projectId === item.id)) + .sort((a, b) => + (a.implicitCategory || '').localeCompare(b.implicitCategory || ''), + ); + + const projectStars = allStars.filter( + (item) => !projectCoIs.find((el) => el.projectId === item.projectId), + ); + + const allVotes = votes.filter( + (item) => + !projectCoIs.find( + (el) => + el.projectId === item.project1Id || + el.projectId === item.project2Id, + ), + ); + + const realProgress = this.flowService.calculateProgress( + allVotes, + projectStars, + allProjects, + ); + + count++; + console.log('Done:', count / allUsers.length); + progresses.push({ userAddress: user.address, progress: realProgress }); + } + + return progresses + .filter((el) => el.progress * 3 >= 1) + .filter((el) => + badgeholders + .map((item) => item.toLowerCase()) + .includes(el.userAddress.toLowerCase()), + ); + } + @UseGuards(AuthGuard) @ApiOperation({ summary: 'Used for a pairwise vote between two collections', diff --git a/src/flow/flow.service.ts b/src/flow/flow.service.ts index 0419db3..eb23920 100644 --- a/src/flow/flow.service.ts +++ b/src/flow/flow.service.ts @@ -616,7 +616,7 @@ export class FlowService { }); }; - private calculateProgress = ( + calculateProgress = ( allVotes: { project1Id: number; project2Id: number }[], projectStars: { projectId: number; star: number }[], allProjects: { id: number }[], diff --git a/src/rpgf5-data-import/all-projects.d.ts b/src/rpgf5-data-import/all-projects-928.d.ts similarity index 100% rename from src/rpgf5-data-import/all-projects.d.ts rename to src/rpgf5-data-import/all-projects-928.d.ts diff --git a/src/rpgf5-data-import/all-projects.ts b/src/rpgf5-data-import/all-projects-928.ts similarity index 99% rename from src/rpgf5-data-import/all-projects.ts rename to src/rpgf5-data-import/all-projects-928.ts index d216b9d..d444f0c 100644 --- a/src/rpgf5-data-import/all-projects.ts +++ b/src/rpgf5-data-import/all-projects-928.ts @@ -2842,7 +2842,7 @@ export const projects = [ }, team: ['230074', '292202'], }, - name: 'Sedge ', + name: 'Sedge', description: 'Sedge is a command-line tool that simplifies running nodes for the OP Stack, Ethereum mainnet, and other networks, including testnets.\nSedge makes it easy to set up nodes for OP Mainnet, Base Mainnet, OP Sepolia, and Base Sepolia. Sedge also supports various client implementations, not just Nethermind, allowing users to manage OP Stack and Ethereum nodes quickly and efficiently.', profileAvatarUrl: @@ -11231,7 +11231,7 @@ export const projects = [ category: 'Utility', applicationCategory: 'OP_STACK_TOOLING', organization: null, - name: 'Understanding-Optimism-Codebase ', + name: 'Understanding-Optimism-Codebase', description: 'This document provides a comprehensive explanation of the Optimism codebase, aiming to help newcomers to Optimism quickly get started and truly understand how the code flow in the codebase works.\nWritten in two language versions right now, EN & CN.', profileAvatarUrl: diff --git a/src/rpgf5-data-import/all-projects-930.d.ts b/src/rpgf5-data-import/all-projects-930.d.ts new file mode 100644 index 0000000..93738cc --- /dev/null +++ b/src/rpgf5-data-import/all-projects-930.d.ts @@ -0,0 +1,1296 @@ +export declare const projects: ({ + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: null; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: string[]; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: null; + contracts: null; + grantsAndFunding: { + investments: null; + revenue: null; + grants: { + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + }[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: { + amount: string; + year: string; + details: string; + }[]; + revenue: null; + grants: null; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: string; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: null; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: { + amount: string; + year: string; + details: string; + }[]; + revenue: null; + grants: ({ + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + } | { + grant: string; + link: string; + amount: string; + date: string; + details: string; + fundingRound: null; + })[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: null; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: null; + revenue: null; + grants: { + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + }[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: string; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: { + amount: string; + year: string; + details: string; + }[]; + revenue: null; + grants: ({ + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + } | { + grant: string; + link: string; + amount: string; + date: string; + details: string; + fundingRound: null; + })[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: null; + farcaster: null; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: null; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: null; + revenue: null; + grants: { + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + }[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: null; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: ({ + id: string; + type: string; + url: string; + name: null; + description: null; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics?: undefined; + } | { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + })[]; + packages: { + url: string; + name: null; + description: null; + }[]; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: { + address: string; + deploymentTxHash: string; + deployerAddress: string; + verificationProof: string; + chainId: number; + }[]; + grantsAndFunding: { + investments: null; + revenue: null; + grants: { + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + }[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: null; + farcaster: null; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: null; + }; + team: null; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: null; + revenue: null; + grants: null; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: null; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: null; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: null; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: { + amount: string; + year: string; + details: string; + }[]; + revenue: null; + grants: ({ + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + } | { + grant: string; + link: string; + amount: string; + date: string; + details: string; + fundingRound: null; + })[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: null; + twitter: string; + mirror: null; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: null; + farcaster: null; + twitter: null; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: null; + contracts: { + address: string; + deploymentTxHash: string; + deployerAddress: string; + verificationProof: string; + chainId: number; + }[]; + grantsAndFunding: { + investments: null; + revenue: null; + grants: { + grant: string; + link: string; + amount: string; + date: string; + details: string; + fundingRound: null; + }[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: string[]; + farcaster: string[]; + twitter: string; + mirror: string; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: string[]; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: string[]; + sol_addresses: null; + }; + }[]; + github: ({ + id: string; + type: string; + url: string; + name: null; + description: null; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics?: undefined; + } | { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + })[]; + packages: { + url: string; + name: null; + description: null; + }[]; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: null; + grantsAndFunding: { + investments: null; + revenue: null; + grants: ({ + grant: string; + link: null; + amount: string; + date: string; + details: null; + fundingRound: string; + } | { + grant: string; + link: string; + amount: string; + date: string; + details: string; + fundingRound: null; + })[]; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +} | { + id: string; + applicationId: string; + projectId: string; + category: string; + applicationCategory: string; + organization: { + name: string; + description: string; + organizationAvatarUrl: string; + organizationCoverImageUrl: string; + socialLinks: { + website: null; + farcaster: null; + twitter: string; + mirror: string; + }; + team: string[]; + }; + name: string; + description: string; + profileAvatarUrl: string; + projectCoverImageUrl: string; + socialLinks: { + website: null; + farcaster: null; + twitter: null; + mirror: null; + }; + team: { + fid: number; + object: string; + pfp_url: string; + profile: { + bio: { + text: string; + }; + }; + username: string; + power_badge: boolean; + display_name: string; + active_status: string; + verifications: null; + follower_count: number; + custody_address: string; + following_count: number; + verified_addresses: { + eth_addresses: null; + sol_addresses: null; + }; + }[]; + github: { + id: string; + type: string; + url: string; + name: string; + description: string; + verified: boolean; + openSource: boolean; + containsContracts: boolean; + createdAt: string; + updatedAt: string; + projectId: string; + metrics: { + artifact_url: string; + num_contributors: string; + num_trusted_contributors: string; + num_contributors_last_6_months: string; + num_stars: string; + num_trusted_stars: string; + trust_weighted_stars: string; + num_forks: string; + num_trusted_forks: string; + trust_weighted_forks: string; + trust_rank_for_repo_in_category: string; + age_of_project_years: string; + license: string; + }; + }[]; + packages: null; + links: { + url: string; + name: string; + description: string; + }[]; + contracts: { + address: string; + deploymentTxHash: string; + deployerAddress: string; + verificationProof: string; + chainId: number; + }[]; + grantsAndFunding: { + investments: { + amount: string; + year: string; + details: string; + }[]; + revenue: null; + grants: null; + }; + pricingModel: { + type: string; + details: string; + }; + impactStatement: { + category: string; + subcategory: string[]; + statement: { + create: { + answer: string; + question: string; + }[]; + }; + }; + testimonials: string; +})[]; diff --git a/src/rpgf5-data-import/all-projects-Sep22.ts b/src/rpgf5-data-import/all-projects-Sep22.ts index 00255d4..a0bcd26 100644 --- a/src/rpgf5-data-import/all-projects-Sep22.ts +++ b/src/rpgf5-data-import/all-projects-Sep22.ts @@ -1,4 +1,4 @@ -const projects = [ +export const projects = [ { id: '0x0403926badb0cd173b98ea187d30423bfbd1d8a7c9c6ba5e874d0ed3872b58c7', applicationId: diff --git a/src/rpgf5-data-import/badgeholders.ts b/src/rpgf5-data-import/badgeholders.ts new file mode 100644 index 0000000..4ef52ee --- /dev/null +++ b/src/rpgf5-data-import/badgeholders.ts @@ -0,0 +1,127 @@ +export const badgeholders = [ + '0x5c30f1273158318d3dc8ffcf991421f69fd3b77d', + '0x64af04a2fc6407a00951ad1ab534f4e0b23f3a56', + '0xfdfab69f684876493fb4403be0da0acb8c64a88e', + '0x0e6425c5666dd516993e99cafed9767830cb37f9', + '0x5f4bcccb5c2cbb01c619f5cfed555466e31679b6', + '0xce8925db997c654ca6830b645f7a7acfef2cc503', + '0x56edf679b0c80d528e17c5ffe514dc9a1b254b9c', + '0x2a99ec82d658f7a77ddebfd83d0f8f591769cb64', + '0xf32dd1bd55bd14d929218499a2e7d106f72f79c7', + '0xf8e30c251aa7974aa0a2d9e452d863681f8b59ac', + '0xabf5f73c4e42672b00ccd4f3e692fd695781f0a4', + '0xa3b5c58cef73ada157ceaecdeaa68d7ea2fc0592', + '0x120dce11bc7bc745544129c0c53fb08e4f113ad2', + '0xc9d5dc70a2cebce15f685148bbc7d53704e53b7f', + '0x277d26a45add5775f21256159f089769892cea5b', + '0xcafd432b7ecafff352d92fcb81c60380d437e99d', + '0xb21c33de1fab3fa15499c62b59fe0cc3250020d1', + '0xaef766ce8047a11cbb0f8264dea7559fd0b48444', + '0x961aa96febee5465149a0787b03bfa14d8e9033f', + '0xfa244692f6aa32c7eb01e46c4e8edb048348fe11', + '0x68108902de3a5031197a6eb3b74b3b033e8e8e4d', + '0xf5f0a5135486ff2715b1dfaead54eeaffe6b8404', + '0x19f8a76474ebf9effb269ec5c2b935a3611d6779', + '0x60ec4fd8069513f738f3a0f41b9e00c294e74bf3', + '0xc0017405e287476443ab1b342b86f2ea92ef9f73', + '0x8289432acd5eb0214b1c2526a5edb480aa06a9ab', + '0x05ff834dd5a7edb437b061cb00108200bf4873d6', + '0xf346100e892553dceb41a927fb668da7b0b7c964', + '0x07bf3cda34aa78d92949bbdce31520714ab5b228', + '0x07fda67513ec0897866098a11dc3858089d4a505', + '0xcf79c7eaec5bdc1a9e32d099c5d6bdf67e4cf6e8', + '0x3b60e31cfc48a9074cd5bebb26c9eaa77650a43f', + '0x69e271483c38ed4902a55c3ea8aab9e7cc8617e5', + '0x64fed9e56b548343e7bb47c49ecd7ffa9f1a34fe', + '0x3db5b38ef4b433d9c6a664bd35551be73313189a', + '0x66946def4ba6153c500d743b7a5febfc1654d6bd', + '0xe422d6c46a69e989ba6468ccd0435cb0c5c243e3', + '0xa50d0e425461ccab26ef30104cdd879b90db3843', + '0x5a5d9ab7b1bd978f80909503ebb828879daca9c3', + '0x6dc43be93a8b5fd37dc16f24872babc6da5e5e3e', + '0xef32eb37f3e8b4bdddf99879b23015f309ed7304', + '0xf68d2bfcecd7895bba05a7451dd09a1749026454', + '0x06f455e2c297a4ae015191fa7a4a11c77c5b1b7c', + '0x75536cf4f01c2bfa528f5c74ddc1232db3af3ee5', + '0x92bf20563e747b2f8711549be17a9d7b876c4053', + '0xac469c5df1ce6983ff925d00d1866ab780d402a4', + '0x826976d7c600d45fb8287ca1d7c76fc8eb732030', + '0x9c949881084dcbd97237f786710ab8e52a457136', + '0x894aa5f1e45454677a8560dde3b45cb5c427ef92', + '0xbf430a49c4d85aeed3908619d5387a1fbf8e74a9', + '0x73186b2a81952c2340c4eb2e74e89869e1183df0', + '0x7fc80fad32ec41fd5cfcc14eee9c31953b6b4a8b', + '0x5d36a202687fd6bd0f670545334bf0b4827cc1e2', + '0x55aed0ce035883626e536254dda2f23a5b5d977f', + '0x15c6ac4cf1b5e49c44332fb0a1043ccab19db80a', + '0x66da63b03feca7dd44a5bb023bb3645d3252fa32', + '0x53e0b897eae600b2f6855fce4a42482e9229d2c2', + '0xdb150346155675dd0c93efd960d5985244a34820', + '0xdb5781a835b60110298ff7205d8ef9678ff1f800', + '0x839395e20bbb182fa440d08f850e6c7a8f6f0780', + '0x585639fbf797c1258eba8875c080eb63c833d252', + '0x396a34c10b11e33a4bf6f3e6a419a23c54ad34fb', + '0x534631bcf33bdb069fb20a93d2fdb9e4d4dd42cf', + '0x1f5d295778796a8b9f29600a585ab73d452acb1c', + '0xabf28f8d9adfb2255f4a059e37d3bce9104969db', + '0x1de2a056508e0d0dd88a88f1f5cdf9cfa510795c', + '0xf4b0556b9b6f53e00a1fdd2b0478ce841991d8fa', + '0x288c53a1ba857ead34ad0e79f644087f8174185a', + '0x12681667bb220521c222f50ece5eb752046bc144', + '0x8f07bc36ff569312fdc41f3867d80bbd2fe94b76', + '0x94db037207f6fb697dbd33524aadffd108819dc8', + '0x00409fc839a2ec2e6d12305423d37cd011279c09', + '0x1d3bf13f8f7a83390d03db5e23a950778e1d1309', + '0x69dc230b06a15796e3f42baf706e0e55d4d5eaa1', + '0x616cad18642f45d3fa5fcaad0a2d81764a9cba84', + '0xd35e119782059a27fead4edda8b555f393650bc8', + '0x9934465ee73beaf148b1b3ff232c8cd86c4c2c63', + '0xc2e2b715d9e302947ec7e312fd2384b5a1296099', + '0xdc0a92c350a52b6583e235a57901b8731af8b249', + '0x665d84fffddd72d24df555e6b065b833478dffca', + '0xdcf7be2ff93e1a7671724598b1526f3a33b1ec25', + '0x5e349eca2dc61abcd9dd99ce94d04136151a09ee', + '0xa142ab9eab9264807a41f0e5cbdab877d204e233', + '0xac3a69dd4a8fecc18b172bfa9643d6b0863819c8', + '0x399e0ae23663f27181ebb4e66ec504b3aab25541', + '0x5554672e67ba866b9861701d0e0494ab324ad19a', + '0x29c4dbc1a81d06c9aa2faed93bb8b4a78f3eabdb', + '0x53c61cfb8128ad59244e8c1d26109252ace23d14', + '0x91031dcfdea024b4d51e775486111d2b2a715871', + '0x849151d7d0bf1f34b70d5cad5149d28cc2308bf1', + '0x34aa3f359a9d614239015126635ce7732c18fdf3', + '0xa3eac0016f6581ac34768c0d4b99ddcd88071c3c', + '0x490c91f38ec57e3ab00811e0c51a62bfed7e81f4', + '0xd31b671f1a398b519222fdaba5ab5464b9f2a3fa', + '0x801707059a55d748b23b02043c71b7a3d976f071', + '0x17640d0d8c93bf710b6ee4208997bb727b5b7bc2', + '0x1e6d9f536a5d1cc04fc13b3133efdb90c8ee5ea1', + '0x7899d9b1181cbb427b0b1be0684c096c260f7474', + '0x434f5325ddcdbbfcce64be2617c72c4aa33ec3e7', + '0x0331969e189d63fbc31d771bb04ab44227d748d8', + '0x9194efdf03174a804f3552f4f7b7a4bb74badb7f', + '0xeee718c1e522ecb4b609265db7a83ab48ea0b06f', + '0x23936429fc179da0e1300644fb3b489c736d562f', + '0xe53e89d978ff1da716f80baa6e6d8b3fa23f2284', + '0x5555763613a12d8f3e73be831dff8598089d3dca', + '0x75cac0ceb8a39ddb4942a83ad2aafaf0c2a3e13f', + '0x14276eb29e90541831cb94c80331484ae6d2a1d8', + '0xaeb99a255c3a243ab3e4f654041e9bf5340cf313', + '0xdadd7c883288cfe2e257b0a361865e5e9349808b', + '0x60ca282757ba67f3adbf21f3ba2ebe4ab3eb01fc', + '0x378c23b326504df4d29c81ba6757f53b2c59f315', + '0xdd7a79b1b6e8dd444f99d68a7d493a85556944a2', + '0xde2b6860cb3212a6a1f8f8628abfe076723a4b39', + '0x57893e666bd15e886d74751b0879361a3383b57a', + '0x5872ce037211233b9f6f5095c25988021f270c21', + '0xdcf09a83e9cc4611b2215bfb7116bfaf5e906d3d', + '0x6eda5acaff7f5964e1ecc3fd61c62570c186ca0c', + '0x48a63097e1ac123b1f5a8bbffafa4afa8192fab0', + '0xb0623c91c65621df716ab8afe5f66656b21a9108', + '0x925afeb19355e289ed1346ede709633ca8788b25', + '0x146cfed833cc926b16b0da9257e8a281c2add9f3', + '0x28f569cc6c29d804a1720edc16bf1ebab2ea35b4', + '0x45a10f35befa4ab841c77860204b133118b7ccae', + '0x8eb9e5e5375b72ee7c5cb786ce8564d854c26a86', + '0x308fedfb88f6e85f27b85c8011ccb9b5e15bcbf7', +]; diff --git a/src/rpgf5-data-import/gsheet.ts b/src/rpgf5-data-import/gsheet.ts index 1325719..780287d 100644 --- a/src/rpgf5-data-import/gsheet.ts +++ b/src/rpgf5-data-import/gsheet.ts @@ -43,48 +43,6 @@ export const projects = [ 'Column 33': '0x0242f727cd5dc0878cfc297be8046e3527563cc12f28021ea1eeb6611d86eb0e', }, - { - isSelected: 'Approved', - id: '0xc6ce7c19e261fb70c69dd6a721637b82fa21a048bf668295487af011c8700186', - applicationId: - '0xc6ce7c19e261fb70c69dd6a721637b82fa21a048bf668295487af011c8700186', - projectId: - '0x5759249c433d67eeb2ca1b6ff827feec164b60b92e849d6ce0db0974cedc4a89', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'Ethereum client implementations', - organization_name: 'Paradigm OSS', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['3860']", - name: 'OP Reth', - description: - "The OP Stack is built to be modular, and allows any EL to plug as long as it's following the spec. \n\nWe proceeded to adjust Reth, a new EL for Ethereum, to be compatible with the OP Stack by adding support for Deposit transactions, the new Engine API modifications and more. This brings down OP Stack chain sizes down by >5x and provides improved runtime performance.\n\nOP Reth supports the latest Optimism upgrades, as well as OP Mainnet.\n\nhttps://reth.rs/run/optimism.html\nhttps://reth.rs/run/sync-op-mainnet.html", - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/e20ba37b-2751-4976-938f-9f0915231c7d.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/de2004b9-a85c-4846-8d84-c3246d7a53c5.png', - project_socialLinks_website: "['https://github.com/paradigmxyz/reth']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", - impactStatement_statement: - "[{'answer': 'OP Reth is an additional client implementation of OP Stack in Rust.\\n\\nIt is based off of the Reth project and is implemented as a \"Reth Core SDK\" module under: https://github.com/paradigmxyz/reth/tree/main/crates/optimism.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'The OP Stack would struggle with scaling and with supporting its multi-client roadmap such as supporting multiproofs.\\n\\nOP Reth provides best-in-class performance for OP Stack L2s, and is already adopted by OP Stack users like Base, Worldchain, Conduit and others. It reduces archive node size by >5x, and it is the most performant L2 node to date.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: 149069, - 'Column 1': '', - 'Column 33': - '0x2e075fb37977668c15af474229f2f2abb009850a6a867b8bbf4adb5e293d1fe3', - }, { isSelected: 'Approved', id: '0x4b4627904b97d79cf68f11637d19d05bdb1bc2499e2c16df0c8519841ece9e21', @@ -128,50 +86,6 @@ export const projects = [ 'Column 33': '0x3f8baf6d4f2cbe2d02f471274f32ad259a446e84dd82c600f034d36f84a2a3d3', }, - { - isSelected: 'Approved', - id: '0x65231830e92dbe255251d382e23b1fbe1763de5f88f25ceddacc90e13e1fa295', - applicationId: - '0x65231830e92dbe255251d382e23b1fbe1763de5f88f25ceddacc90e13e1fa295', - projectId: - '0x7f1256b007e1156494e43b58d5e85e6ec20f4fcf1e5cac6ebb17b702e9c0b5fb', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'Ethereum client implementations', - organization_name: 'Nethermind', - organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ead85a0e-7517-4e76-a094-4ca53869d34c.png', - organizationCoverImageUrl: '', - socialLinks_website: "['https://www.nethermind.io/']", - socialLinks_farcaster: "['https://warpcast.com/nethermind']", - socialLinks_twitter: 'https://x.com/NethermindEth', - socialLinks_mirror: '', - team: "['230074', '292202']", - name: 'OP Nethermind', - description: - 'OP Nethermind brings the Nethermind Execution Client to the OP Stack, including OP Mainnet and Base, with all the same features as our L1 client. Nethermind is known for its performance, extensibility and stability. It brings client diversity to the Superchain.', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0415c07b-027a-46dd-8826-c4dca1cccece.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/c8883caa-2948-4ea3-a38e-eff279f93b8d.png', - project_socialLinks_website: - "['https://www.nethermind.io/nethermind-client']", - project_socialLinks_farcaster: "['https://warpcast.com/nethermind']", - project_socialLinks_twitter: 'https://x.com/nethermindeth', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", - impactStatement_statement: - "[{'answer': \"OP Nethermind brings the full range of Nethermind's features to the OP Stack, enhancing client diversity across OP chains and providing node operators with a reliable alternative. The performance of OP Nethermind can increase the throughput of OP chains, thus supporting their future growth.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Without OP Nethermind, the client diversity of the OP Stack would be reduced, affecting its overall security and stability. The performance and features provided by OP Nethermind, along with future innovations from the team, would no longer be available.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: 248448, - 'Column 1': '', - 'Column 33': - '0x51cda5996ef1a2ccd8fcf4ee5792337695599454c83eb1218c3ad4388dcb5bf5', - }, { isSelected: 'Approved', id: '0x716ad2474c6acff63481ec2283e01a2c4bef79250a1e85119324edae7b8d53ce', @@ -557,53 +471,6 @@ export const projects = [ 'Column 33': '0x334fa6de0243cd1509870ea95f400fd524bd9c8f909e7f629d5457e4ca52e6fc', }, - { - isSelected: 'Approved', - id: '0x19c6b7b2fd40036f3a778cf3c3998ad1ecb19dc285cebdd164b52939fa4ea3b4', - applicationId: - '0x19c6b7b2fd40036f3a778cf3c3998ad1ecb19dc285cebdd164b52939fa4ea3b4', - projectId: - '0x7504e494cb8d227193182e083128912173c14eaeecec9b90fa453de28377b269', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'Ethereum core development Research', - organization_name: 'Interplanetary Shipyard', - organization_description: - 'Interplanetary Shipyard is an independent engineering team maintaining, operating, and developing the canonical IPFS and libp2p implementations.', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/cc5bdce9-2076-4218-bb6e-08c08a03f9fe.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f1bfae12-e2c7-4d3c-b5a6-036fe77579e5.png', - socialLinks_website: "['https://ipshipyard.com/']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/ipshipyard', - socialLinks_mirror: '', - team: "['845866', '779819', '468804', '849466']", - name: 'Hermes - a GossipSub listener and tracer for libp2p-based networks.', - description: - 'The ProbeLab team has recently built Hermes, a GossipSub listener and tracer for libp2p-based networks. Hermes-based experiments aim to measure the efficiency and performance of the GossipSub message broadcasting protocol in any libp2p-based network. Acting as a light node of sorts, Hermes can help developers collect valuable data and tune their network’s protocols based on the message propagation latency, control message overhead and a variety of other metrics. Hermes currently supports the Ethereum consensus layer network.\n\nThe ProbeLab team specialises in network-layer measurements and monitoring. The team operates a variety of tools and uses the data it collects to propose network protocol optimisations.', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/90c0de0c-cc0e-4959-afb7-a78ae4c9d674.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/e1d59a51-3f6f-4642-bc88-553026d2d067.png', - project_socialLinks_website: - "['https://probelab.io', 'https://probelab.network']", - project_socialLinks_farcaster: "['@yiannisbot']", - project_socialLinks_twitter: '@yiannisbot', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: - "['Ethereum client implementations', 'Research which informs Ethereum core development', 'Ethereum test networks']", - impactStatement_statement: - "[{'answer': \"Hermes has been used to produce high-impact research and inform developments of the Ethereum core protocol. The studies that Hermes enabled have revealed important insights wrt central protocols of the Ethereum stack, such as Gossipsub.\\n\\nHighlights include capturing metrics such as the number of duplicate messages in the network [1], the bandwidth consumption of Ethereum nodes [2] and the effectiveness of Gossipsub's gossip technique [3].\\n\\nLast but not least, Hermes has been used by EF and other teams to inform design decisions related to PeerDAS and for making data available to the public to dig into and reuse through the integration with Xatu [4].\\n\\n[1] https://ethresear.ch/t/number-duplicate-messages-in-ethereums-gossipsub-network/19921\\n[2] https://ethresear.ch/t/ethereum-node-message-propagation-bandwidth-consumption/19952\\n[3] https://ethresear.ch/t/gossip-iwant-ihave-effectiveness-in-ethereums-gossipsusb-network/19686\\n[4] https://ethpandaops.io/posts/xatu-consensus-layer-p2p/\\n\\n\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Ethereum is securing L2 networks, such as Optimism. The correct, secure and optimised operation of Ethereum is a prerequisite for the health of Optimism. Acting as a light client of sorts, Hermes is making it easier to experiment with network protocol setups and parameter settings and ensures that informed decisions are made when it comes to Ethereum core protocol developments.\\n\\nAs such, if Hermes ceased to exist, Ethereum (and L2s) core developers would have less insights on the internals of the P2P network. Other similar tools and infrastructure would have to be set up in order to be able to extract metrics, such as the following from the network.\\n\\n- Bandwidth consumption of Ethereum nodes\\n- Number of Duplicate messages in the network\\n- Gossip Effectiveness\\n- Number of IDONTWANTs and resulting bandwidth saving\\n- Block propagation latency', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': - '0x3a103436d12a3d54ade1a44f87ce255417fd530b6ec55abd3bea1898b32c61c1', - }, { isSelected: 'Approved', id: '0x42f449a7238b2d19785a41371e6902a0e782bbf28270d8ff1690b87a43a0b80a', @@ -869,6 +736,96 @@ export const projects = [ 'Column 33': '0x80a7a36ae190817283d49b64d9ce3ff729cf93a6f55135442162866c581cfa63', }, + { + isSelected: 'Approved', + id: '0x74988422f40235f42bf41a73ed227cf78277c7c92ee0e73b220ddf3411089885', + applicationId: + '0x74988422f40235f42bf41a73ed227cf78277c7c92ee0e73b220ddf3411089885', + projectId: + '0x7ada1f0835c4c195d0dd8d9761b80f87dab88d21891b2a2e83220720560af7c1', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': 'Ethereum core development Research', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', + socialLinks_mirror: '', + team: '', + name: 'Ethereum POS Testnet', + description: + 'Quick and Easy Way to Bootstrap your own Local Ethereum PoS Testnet. Great for testing consensus', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/337dbbb2-74f9-4eee-9685-95922c926e38.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/e76d2c47-741f-4277-9b6f-e2930a492b47.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: + "['Ethereum test networks', 'Infrastructure to test and deploy chains']", + impactStatement_statement: + "[{'answer': \"This project is used to spin up an L1 chain that can and has been used as a base layer for OP Stack. In the past year, I've had more than 200 clones of the project and [received testimony](https://github.com/rzmahmood/ethereum-pos-testnet/issues/23#issuecomment-2300014549) that it has been used to launch chains such as CoNet https://x.com/CoNET_Network, and is actively being used as a base layer for OP Stack chains. \\n\\nExisting ephemeral test net solutions do not allow developers to modify the base layer without significant effort such as rebuilding docker images on each change. This solution fills the gap, speeding up development time and easing more engineers into protocol development.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If my project ceased to exist, there would be no easy way for OP Stack deployers to launch their chain on a customised L1. Customising the L1 allows for forward-thinking as Ethereum evolves, allowing us to toy with ideas that further accelerate the Rollup scalability roadmap. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', + 'Column 1': '', + 'Column 33': + '0x43bb3210691d0a7fd15df10a5401020281f7ab57baa49a63225c5c262abc357d', + }, + { + isSelected: 'Approved', + id: '0x19c6b7b2fd40036f3a778cf3c3998ad1ecb19dc285cebdd164b52939fa4ea3b4', + applicationId: + '0x19c6b7b2fd40036f3a778cf3c3998ad1ecb19dc285cebdd164b52939fa4ea3b4', + projectId: + '0x7504e494cb8d227193182e083128912173c14eaeecec9b90fa453de28377b269', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': 'Ethereum test networks', + organization_name: 'Interplanetary Shipyard', + organization_description: + 'Interplanetary Shipyard is an independent engineering team maintaining, operating, and developing the canonical IPFS and libp2p implementations.', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/cc5bdce9-2076-4218-bb6e-08c08a03f9fe.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/f1bfae12-e2c7-4d3c-b5a6-036fe77579e5.png', + socialLinks_website: "['https://ipshipyard.com/']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/ipshipyard', + socialLinks_mirror: '', + team: "['845866', '779819', '468804', '849466']", + name: 'Hermes - a GossipSub listener and tracer for libp2p-based networks.', + description: + 'The ProbeLab team has recently built Hermes, a GossipSub listener and tracer for libp2p-based networks. Hermes-based experiments aim to measure the efficiency and performance of the GossipSub message broadcasting protocol in any libp2p-based network. Acting as a light node of sorts, Hermes can help developers collect valuable data and tune their network’s protocols based on the message propagation latency, control message overhead and a variety of other metrics. Hermes currently supports the Ethereum consensus layer network.\n\nThe ProbeLab team specialises in network-layer measurements and monitoring. The team operates a variety of tools and uses the data it collects to propose network protocol optimisations.', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/90c0de0c-cc0e-4959-afb7-a78ae4c9d674.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/e1d59a51-3f6f-4642-bc88-553026d2d067.png', + project_socialLinks_website: + "['https://probelab.io', 'https://probelab.network']", + project_socialLinks_farcaster: "['@yiannisbot']", + project_socialLinks_twitter: '@yiannisbot', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: + "['Ethereum client implementations', 'Research which informs Ethereum core development', 'Ethereum test networks']", + impactStatement_statement: + "[{'answer': \"Hermes has been used to produce high-impact research and inform developments of the Ethereum core protocol. The studies that Hermes enabled have revealed important insights wrt central protocols of the Ethereum stack, such as Gossipsub.\\n\\nHighlights include capturing metrics such as the number of duplicate messages in the network [1], the bandwidth consumption of Ethereum nodes [2] and the effectiveness of Gossipsub's gossip technique [3].\\n\\nLast but not least, Hermes has been used by EF and other teams to inform design decisions related to PeerDAS and for making data available to the public to dig into and reuse through the integration with Xatu [4].\\n\\n[1] https://ethresear.ch/t/number-duplicate-messages-in-ethereums-gossipsub-network/19921\\n[2] https://ethresear.ch/t/ethereum-node-message-propagation-bandwidth-consumption/19952\\n[3] https://ethresear.ch/t/gossip-iwant-ihave-effectiveness-in-ethereums-gossipsusb-network/19686\\n[4] https://ethpandaops.io/posts/xatu-consensus-layer-p2p/\\n\\n\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Ethereum is securing L2 networks, such as Optimism. The correct, secure and optimised operation of Ethereum is a prerequisite for the health of Optimism. Acting as a light client of sorts, Hermes is making it easier to experiment with network protocol setups and parameter settings and ensures that informed decisions are made when it comes to Ethereum core protocol developments.\\n\\nAs such, if Hermes ceased to exist, Ethereum (and L2s) core developers would have less insights on the internals of the P2P network. Other similar tools and infrastructure would have to be set up in order to be able to extract metrics, such as the following from the network.\\n\\n- Bandwidth consumption of Ethereum nodes\\n- Number of Duplicate messages in the network\\n- Gossip Effectiveness\\n- Number of IDONTWANTs and resulting bandwidth saving\\n- Block propagation latency', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', + 'Column 1': '', + 'Column 33': + '0x3a103436d12a3d54ade1a44f87ce255417fd530b6ec55abd3bea1898b32c61c1', + }, { isSelected: 'Approved', id: '0xb79e4919dfe7b72d966ad36ff7aa4619204a47d7e281f9bf955114a366f7189b', @@ -1007,80 +964,33 @@ export const projects = [ }, { isSelected: 'Approved', - id: '0xb0acb1a252cdb3b2a7dfadc8c5925da71f005082ec045d8bb3855f64ac4774b9', + id: '0x0403926badb0cd173b98ea187d30423bfbd1d8a7c9c6ba5e874d0ed3872b58c7', applicationId: - '0xb0acb1a252cdb3b2a7dfadc8c5925da71f005082ec045d8bb3855f64ac4774b9', + '0x0403926badb0cd173b98ea187d30423bfbd1d8a7c9c6ba5e874d0ed3872b58c7', projectId: - '0xc71faa1bcb4ceb785816c3f22823377e9e5e7c48649badd9f0a0ce491f20d4b3', + '0xc9561ba3e4eca5483b40f8b1a254a73c91fefe4f8aee32dc20c0d96dcf33fe80', category: 'Utility', applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', 'PW subcategory': 'Ethereum test networks', - organization_name: 'Interplanetary Shipyard', + organization_name: 'Vac', organization_description: - 'Interplanetary Shipyard is an independent engineering team maintaining, operating, and developing the canonical IPFS and libp2p implementations.', + 'Vac is a principle-driven research and development group that provides technical support to the Institute of Free Technology (IFT). It comprises R&D Service Units, Deep Research, and Incubator Projects. We do applied research based on which we build protocols, libraries, specifications, and publications. As custodians of these protocols, our aim is to adhere to a set of principles that ensure their alignment with our core values and objectives.', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/cc5bdce9-2076-4218-bb6e-08c08a03f9fe.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f1bfae12-e2c7-4d3c-b5a6-036fe77579e5.png', - socialLinks_website: "['https://ipshipyard.com/']", + 'https://storage.googleapis.com/op-atlas/b827d993-ab96-46f1-87b9-db390a7c699a.png', + organizationCoverImageUrl: '', + socialLinks_website: "['https://vac.dev/']", socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/ipshipyard', + socialLinks_twitter: 'https://x.com/vacp2p', socialLinks_mirror: '', - team: "['845866', '779819', '468804', '849466']", - name: 'go-libp2p', + team: "['849530']", + name: 'nim-libp2p', description: - "The canonical Golang implementation of libp2p. Go-libp2p is a collection of protocols that support a wide range of functionalities, such as; connection establishment, remote node protocol identification and negotiation (through its identify protocol), data encryption, content/peer discovery (through its Kademlia DHT component), and data transfer through its pub-sub protocol (Gossipsub).\n\nThe stakeholders of go-libp2p include the Interplanetary Shipyard team who maintain this implementation as well as projects that depend on go-libp2p like Optimism's op-node (the reference implementation of the rollup-node spec), the Ethereum Beacon Chain (via Prysm, the Go consensus client), Filecoin (Lotus and Venus), Celestia node, and many more: https://github.com/libp2p/go-libp2p?tab=readme-ov-file#notable-users.", + "libp2p is a Peer-to-Peer networking stack, with implementations in multiple languages derived from the same specifications.\n\nBuilding large scale peer-to-peer systems has been complex and difficult in the last 15 years and libp2p is a way to fix that. It's striving to be a modular stack, with sane and secure defaults, useful protocols, while remaining open and extensible. This implementation in native Nim, relying on chronos for async. It's used in production by a few projects.\n\nLearn more about libp2p at libp2p.io and follow libp2p's documentation docs.libp2p.io.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/277d8353-44c4-4e16-a2bd-2dfb3fb9e65f.png', + 'https://storage.googleapis.com/op-atlas/0a383e33-111b-4b55-8380-b9efbb5b8c79.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/4c70ca4a-8b38-47ee-97d0-2a64a63700f8.png', - project_socialLinks_website: - "['https://ipshipyard.com/', 'https://github.com/libp2p/go-libp2p']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/ipshipyard', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: - "['Ethereum client implementations', 'Ethereum test networks', 'Research which informs Ethereum core development']", - impactStatement_statement: - "[{'answer': \"go-libp2p powers the Optimism mainnet through its use in op-node and similarly powers the Optimism Superchain ecosystem via it's use in the OP Stack. In op-node and OP stack, go-libp2p's TCP transport, Connection Manager, Peerstore, Identify, AutoNAT & Ping protocols are used. As well as multiplexers like mplex and yamux, the TLS and Noise secure channels, and GossipSub for p2p messaging.\\nIn the period between Oct 1 2023 - July 31 2024, go-libp2p has 3 major releases from v0.32.x to v0.35.x used in the OP stack and beacon chain. Major improvements include efficiencies like improving the dial prioritization logic to avoid spurious dials (Happy eyeballs for TCP), TLS encryption for TCP by default (for better performance), multiple improvements to the go-libp2p Resource manager, and more. Furthermore, in this period, go-libp2p has released multiple security fixes that improve the health of the Ethereum and Optimism mainnet.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Because the Ethereum Beacon Chain and the OP stack are completely reliant on libp2p for its networking capabilities, if the go-libp2p project did not exist then both projects would have to have to write a libp2p implementation in Golang from scratch. A key yet understated feature that libp2p provides is interoperability across implementations in different languages. For example, a go-libp2p Prysm node can communicate with a rust-libp2p Lighthouse node seamlessly; without go-libp2p, there would be no Golang implementation to interoperate or form p2p networks with other language implementations. As a result, without go-libp2p Ethereum and the OP stack would lose a crucial libp2p implementation that powers the OP mainnet and a significant percentage of the Beacon Chain.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': - '0x66a3f6245dc3ac966d3ed9dd8c076a723cfc3aaaf5ea3721c634d46c3be46331', - }, - { - isSelected: 'Approved', - id: '0x0403926badb0cd173b98ea187d30423bfbd1d8a7c9c6ba5e874d0ed3872b58c7', - applicationId: - '0x0403926badb0cd173b98ea187d30423bfbd1d8a7c9c6ba5e874d0ed3872b58c7', - projectId: - '0xc9561ba3e4eca5483b40f8b1a254a73c91fefe4f8aee32dc20c0d96dcf33fe80', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'Ethereum test networks', - organization_name: 'Vac', - organization_description: - 'Vac is a principle-driven research and development group that provides technical support to the Institute of Free Technology (IFT). It comprises R&D Service Units, Deep Research, and Incubator Projects. We do applied research based on which we build protocols, libraries, specifications, and publications. As custodians of these protocols, our aim is to adhere to a set of principles that ensure their alignment with our core values and objectives.', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/b827d993-ab96-46f1-87b9-db390a7c699a.png', - organizationCoverImageUrl: '', - socialLinks_website: "['https://vac.dev/']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/vacp2p', - socialLinks_mirror: '', - team: "['849530']", - name: 'nim-libp2p', - description: - "libp2p is a Peer-to-Peer networking stack, with implementations in multiple languages derived from the same specifications.\n\nBuilding large scale peer-to-peer systems has been complex and difficult in the last 15 years and libp2p is a way to fix that. It's striving to be a modular stack, with sane and secure defaults, useful protocols, while remaining open and extensible. This implementation in native Nim, relying on chronos for async. It's used in production by a few projects.\n\nLearn more about libp2p at libp2p.io and follow libp2p's documentation docs.libp2p.io.", - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0a383e33-111b-4b55-8380-b9efbb5b8c79.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/b5e4e8f2-f625-445b-b802-817890372687.png', - project_socialLinks_website: "['https://github.com/vacp2p/nim-libp2p']", + 'https://storage.googleapis.com/op-atlas/b5e4e8f2-f625-445b-b802-817890372687.png', + project_socialLinks_website: "['https://github.com/vacp2p/nim-libp2p']", project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', @@ -1276,49 +1186,6 @@ export const projects = [ 'Column 33': '0x356eee43066d2e12c46f06eb710b8d33d6655db061cb3b24d7a38433f228a45b', }, - { - isSelected: 'Approved', - id: '0x74988422f40235f42bf41a73ed227cf78277c7c92ee0e73b220ddf3411089885', - applicationId: - '0x74988422f40235f42bf41a73ed227cf78277c7c92ee0e73b220ddf3411089885', - projectId: - '0x7ada1f0835c4c195d0dd8d9761b80f87dab88d21891b2a2e83220720560af7c1', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'Infrastructure to test and deploy', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'Ethereum POS Testnet', - description: - 'Quick and Easy Way to Bootstrap your own Local Ethereum PoS Testnet. Great for testing consensus', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/337dbbb2-74f9-4eee-9685-95922c926e38.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/e76d2c47-741f-4277-9b6f-e2930a492b47.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: - "['Ethereum test networks', 'Infrastructure to test and deploy chains']", - impactStatement_statement: - "[{'answer': \"This project is used to spin up an L1 chain that can and has been used as a base layer for OP Stack. In the past year, I've had more than 200 clones of the project and [received testimony](https://github.com/rzmahmood/ethereum-pos-testnet/issues/23#issuecomment-2300014549) that it has been used to launch chains such as CoNet https://x.com/CoNET_Network, and is actively being used as a base layer for OP Stack chains. \\n\\nExisting ephemeral test net solutions do not allow developers to modify the base layer without significant effort such as rebuilding docker images on each change. This solution fills the gap, speeding up development time and easing more engineers into protocol development.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If my project ceased to exist, there would be no easy way for OP Stack deployers to launch their chain on a customised L1. Customising the L1 allows for forward-thinking as Ethereum evolves, allowing us to toy with ideas that further accelerate the Rollup scalability roadmap. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': - '0x43bb3210691d0a7fd15df10a5401020281f7ab57baa49a63225c5c262abc357d', - }, { isSelected: 'Approved', id: '0x15ad7707cbebf66f201e96a81fb821bd0afab6a6e93dc63a82f787bd09dbb53f', @@ -2265,6 +2132,139 @@ export const projects = [ 'Column 33': '0x7c2460f0e048edd08abb4279db8fc5318168145672399cb37c9f19c9381d5273', }, + { + isSelected: 'Approved', + id: '0xc6ce7c19e261fb70c69dd6a721637b82fa21a048bf668295487af011c8700186', + applicationId: + '0xc6ce7c19e261fb70c69dd6a721637b82fa21a048bf668295487af011c8700186', + projectId: + '0x5759249c433d67eeb2ca1b6ff827feec164b60b92e849d6ce0db0974cedc4a89', + category: 'Utility', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'Work on core components of the OP Stack', + organization_name: 'Paradigm OSS', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: [], + socialLinks_farcaster: [], + socialLinks_twitter: '', + socialLinks_mirror: '', + team: "['3860']", + name: 'OP Reth', + description: + "The OP Stack is built to be modular, and allows any EL to plug as long as it's following the spec. \n\nWe proceeded to adjust Reth, a new EL for Ethereum, to be compatible with the OP Stack by adding support for Deposit transactions, the new Engine API modifications and more. This brings down OP Stack chain sizes down by >5x and provides improved runtime performance.\n\nOP Reth supports the latest Optimism upgrades, as well as OP Mainnet.\n\nhttps://reth.rs/run/optimism.html\nhttps://reth.rs/run/sync-op-mainnet.html", + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/e20ba37b-2751-4976-938f-9f0915231c7d.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/de2004b9-a85c-4846-8d84-c3246d7a53c5.png', + project_socialLinks_website: "['https://github.com/paradigmxyz/reth']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", + impactStatement_statement: + "[{'answer': 'OP Reth is an additional client implementation of OP Stack in Rust.\\n\\nIt is based off of the Reth project and is implemented as a \"Reth Core SDK\" module under: https://github.com/paradigmxyz/reth/tree/main/crates/optimism.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'The OP Stack would struggle with scaling and with supporting its multi-client roadmap such as supporting multiproofs.\\n\\nOP Reth provides best-in-class performance for OP Stack L2s, and is already adopted by OP Stack users like Base, Worldchain, Conduit and others. It reduces archive node size by >5x, and it is the most performant L2 node to date.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: 149069, + 'Column 1': '', + 'Column 33': + '0x2e075fb37977668c15af474229f2f2abb009850a6a867b8bbf4adb5e293d1fe3', + }, + { + isSelected: 'Approved', + id: '0x65231830e92dbe255251d382e23b1fbe1763de5f88f25ceddacc90e13e1fa295', + applicationId: + '0x65231830e92dbe255251d382e23b1fbe1763de5f88f25ceddacc90e13e1fa295', + projectId: + '0x7f1256b007e1156494e43b58d5e85e6ec20f4fcf1e5cac6ebb17b702e9c0b5fb', + category: 'Utility', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'Work on core components of the OP Stack', + organization_name: 'Nethermind', + organization_description: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/ead85a0e-7517-4e76-a094-4ca53869d34c.png', + organizationCoverImageUrl: '', + socialLinks_website: "['https://www.nethermind.io/']", + socialLinks_farcaster: "['https://warpcast.com/nethermind']", + socialLinks_twitter: 'https://x.com/NethermindEth', + socialLinks_mirror: '', + team: "['230074', '292202']", + name: 'OP Nethermind', + description: + 'OP Nethermind brings the Nethermind Execution Client to the OP Stack, including OP Mainnet and Base, with all the same features as our L1 client. Nethermind is known for its performance, extensibility and stability. It brings client diversity to the Superchain.', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/0415c07b-027a-46dd-8826-c4dca1cccece.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/c8883caa-2948-4ea3-a38e-eff279f93b8d.png', + project_socialLinks_website: + "['https://www.nethermind.io/nethermind-client']", + project_socialLinks_farcaster: "['https://warpcast.com/nethermind']", + project_socialLinks_twitter: 'https://x.com/nethermindeth', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", + impactStatement_statement: + "[{'answer': \"OP Nethermind brings the full range of Nethermind's features to the OP Stack, enhancing client diversity across OP chains and providing node operators with a reliable alternative. The performance of OP Nethermind can increase the throughput of OP chains, thus supporting their future growth.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Without OP Nethermind, the client diversity of the OP Stack would be reduced, affecting its overall security and stability. The performance and features provided by OP Nethermind, along with future innovations from the team, would no longer be available.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: 248448, + 'Column 1': '', + 'Column 33': + '0x51cda5996ef1a2ccd8fcf4ee5792337695599454c83eb1218c3ad4388dcb5bf5', + }, + { + isSelected: 'Approved', + id: '0xb0acb1a252cdb3b2a7dfadc8c5925da71f005082ec045d8bb3855f64ac4774b9', + applicationId: + '0xb0acb1a252cdb3b2a7dfadc8c5925da71f005082ec045d8bb3855f64ac4774b9', + projectId: + '0xc71faa1bcb4ceb785816c3f22823377e9e5e7c48649badd9f0a0ce491f20d4b3', + category: 'Utility', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'Work on core components of the OP Stack', + organization_name: 'Interplanetary Shipyard', + organization_description: + 'Interplanetary Shipyard is an independent engineering team maintaining, operating, and developing the canonical IPFS and libp2p implementations.', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/cc5bdce9-2076-4218-bb6e-08c08a03f9fe.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/f1bfae12-e2c7-4d3c-b5a6-036fe77579e5.png', + socialLinks_website: "['https://ipshipyard.com/']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/ipshipyard', + socialLinks_mirror: '', + team: "['845866', '779819', '468804', '849466']", + name: 'go-libp2p', + description: + "The canonical Golang implementation of libp2p. Go-libp2p is a collection of protocols that support a wide range of functionalities, such as; connection establishment, remote node protocol identification and negotiation (through its identify protocol), data encryption, content/peer discovery (through its Kademlia DHT component), and data transfer through its pub-sub protocol (Gossipsub).\n\nThe stakeholders of go-libp2p include the Interplanetary Shipyard team who maintain this implementation as well as projects that depend on go-libp2p like Optimism's op-node (the reference implementation of the rollup-node spec), the Ethereum Beacon Chain (via Prysm, the Go consensus client), Filecoin (Lotus and Venus), Celestia node, and many more: https://github.com/libp2p/go-libp2p?tab=readme-ov-file#notable-users.", + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/277d8353-44c4-4e16-a2bd-2dfb3fb9e65f.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/4c70ca4a-8b38-47ee-97d0-2a64a63700f8.png', + project_socialLinks_website: + "['https://ipshipyard.com/', 'https://github.com/libp2p/go-libp2p']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/ipshipyard', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: + "['Ethereum client implementations', 'Ethereum test networks', 'Research which informs Ethereum core development']", + impactStatement_statement: + "[{'answer': \"go-libp2p powers the Optimism mainnet through its use in op-node and similarly powers the Optimism Superchain ecosystem via it's use in the OP Stack. In op-node and OP stack, go-libp2p's TCP transport, Connection Manager, Peerstore, Identify, AutoNAT & Ping protocols are used. As well as multiplexers like mplex and yamux, the TLS and Noise secure channels, and GossipSub for p2p messaging.\\nIn the period between Oct 1 2023 - July 31 2024, go-libp2p has 3 major releases from v0.32.x to v0.35.x used in the OP stack and beacon chain. Major improvements include efficiencies like improving the dial prioritization logic to avoid spurious dials (Happy eyeballs for TCP), TLS encryption for TCP by default (for better performance), multiple improvements to the go-libp2p Resource manager, and more. Furthermore, in this period, go-libp2p has released multiple security fixes that improve the health of the Ethereum and Optimism mainnet.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Because the Ethereum Beacon Chain and the OP stack are completely reliant on libp2p for its networking capabilities, if the go-libp2p project did not exist then both projects would have to have to write a libp2p implementation in Golang from scratch. A key yet understated feature that libp2p provides is interoperability across implementations in different languages. For example, a go-libp2p Prysm node can communicate with a rust-libp2p Lighthouse node seamlessly; without go-libp2p, there would be no Golang implementation to interoperate or form p2p networks with other language implementations. As a result, without go-libp2p Ethereum and the OP stack would lose a crucial libp2p implementation that powers the OP mainnet and a significant percentage of the Beacon Chain.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', + 'Column 1': '', + 'Column 33': + '0x66a3f6245dc3ac966d3ed9dd8c076a723cfc3aaaf5ea3721c634d46c3be46331', + }, { isSelected: 'Approved', id: '0xe4ad25cfe18eccc531582634d03b78b03b7115d5fc77de001e735fe178f768f3', @@ -3514,41 +3514,47 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x0a15ff59c1e8f4cf37610ff25b5f42ac06abae78cf4ad81e39146f7f50d42314', + id: '0x0bae27264b02cc7ab3b54a595b2f85d067554642e5089612db4f6a00f92867fa', applicationId: - '0x0a15ff59c1e8f4cf37610ff25b5f42ac06abae78cf4ad81e39146f7f50d42314', + '0x0bae27264b02cc7ab3b54a595b2f85d067554642e5089612db4f6a00f92867fa', projectId: - '0xbde4ef89d6c7719a9e514a74ba1f6accc016f8cbdc4e76ca50108927d45c4c4a', + '0xb39431ee9d3ab706b0607075dea81f00ecfac821e53b04afef57e44c47feec38', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Citizen Wallet', - organization_description: '', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'WID3+ Consortium', + organization_description: + 'The WID3+ Consortium is a group of leading Web3 and digital identity experts in Germany and Malta, who joined forces to solve some of the most pressing issues in Web3 contracting. As a business-to-business (B2B) suite WID3+ maintains the digital identity bridge wid3.app, as well as conducts research and development for creating AUTHBOND as bid bond platform. The WID3+ Consortium is lead by ACURRAENT UG and previously included the University of Malta. In 2023, WID3+ participated in NGI TRUSTCHAIN #OC1 and has now become part of NGI TRUSTCHAIN OC3.', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/de05e730-c051-4e58-956f-0db7fe6d11bf.png', - organizationCoverImageUrl: '', - socialLinks_website: [], + 'https://storage.googleapis.com/op-atlas/c63083a0-b4fb-4951-9ed5-90dfe7399ce7.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/95b565ff-ccb8-4de9-8f67-d1e9acdf35df.png', + socialLinks_website: + "['https://wid3.xyz/', 'https://www.linkedin.com/showcase/wide-consortium/', 'https://github.com/Consortium-WIDE', 'https://acurraent.com/']", socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['20674', '266214', '393897']", - name: 'Citizen Wallet Core development', + socialLinks_twitter: 'https://twitter.com/acurraent', + socialLinks_mirror: + 'https://mirror.xyz/0x81865ebc7694dfba6608f6503bba50abb04644b4', + team: "['226300', '11745', '850759']", + name: 'WID3 - Web3 Identity for DAOs and Education', description: - 'Citizen Wallet, offers communities the web 3 tools they need to easily launch, use and manage community currencies.\n\nSo far we have built:\n- Easy-to-use wallet native mobile app that takes away all the complexity of Web 3 (no gas fees, no configuration)\n- transaction monitoring dashboards\n- NFC wallet solution for simple tap-to-pay or tap-to-earn in-person transactions\n- Administration dashboard with simple flow to create token faucets for easy distribution.\n- Dedicated Point of Sale application to accept tokens in shops.', + 'WIDE is on a mission to bridge the gap between your skills and the opportunities available in Web3. Proving one’s credentials and accessing relevant opportunities is a time-consuming process. WIDE simplifies validating your credentials by allowing you to easily access and share your qualifications (and more). The goal is to allow you to participate in online governance, enrol to local initiatives, and join your favourite DAO based on your skills – enhancing your engagement in the Web3 world and beyond.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/6b0b4d90-65d2-4e98-9e26-b8fd2216e943.png', + 'https://storage.googleapis.com/op-atlas/b8a6f5d1-f6e0-444e-9235-7f36253ea259.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/d2a87b39-c867-4110-a5cc-faabe009c0de.png', - project_socialLinks_website: "['https://citizenwallet.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/citizenwallet']", - project_socialLinks_twitter: 'https://x.com/citizenwallet', - project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + 'https://storage.googleapis.com/op-atlas/2f52dab1-3f31-46bb-868f-49558f19ce44.png', + project_socialLinks_website: + "['https://wid3.xyz/', 'https://wid3.app', 'https://dungeonmaster.wid3-demo.app/', 'https://cryptohubmalta.wid3-demo.app/', 'https://trustchain.ngi.eu/wide/']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://twitter.com/acurraent', + project_socialLinks_mirror: + 'https://mirror.xyz/0x81865ebc7694dfba6608f6503bba50abb04644b4', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Ethereum client implementations', 'Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'With our NFC wallet implementation, we build a solution to create smart wallet accounts on any NFC tag using account abstraction. People can send tokens to their NFC tag and tap to pay at a series of whitelisted stations (to avoid abuse).\\n\\nIt allows you to do simple transactions in stablecoins or any other token. It can be used at events to manage payments and to allocate finite resources to make sure that these are distributed fairly (e.g. swag). It could also be used as a way to reward people (e.g. earn tokens by doing some positive actions at the event, tap your wristband to receive the tokens). Can can read more about it here: \\nhttps://citizenwallet.xyz/nfc-wallet-intro', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our NFC Wallet has been used at several events within the web3 and Optimism ecosystem over the last few months. We would like to highlight two of them: \\n- Celo Gather Berlin (1 June 2024): NFC wallet was used to create an in-event economy where users could complete challenges to earn tokens and buy SWAG. \\n - Full report here: https://citizenwallet.xyz/posts/implementing-nfc-wallet-at-celogather.\\n - During the event 761 transactions were made on Celo.\\n - Token contract: https://celoscan.io/address/0x3C960E72BBbD837293e75080E1d0Fee6a4640357\\n- Regen village during EthCC Brussels(8-12 July):\\n - https://www.regenvillage.brussels/\\n - https://x.com/citizenwallet/status/1804793942807834811\\n - During the event 1,383 transactions were made on Base.\\n - https://basescan.org/token/0x9e179257BE653C56F734Ad0bE8C59503592309Eb\\n - Full report: https://citizenwallet.xyz/posts/regen-village-brussels-2024\\n - Event video recap: https://www.youtube.com/watch?v=FSCi_173Alw', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'WID3 relies on OPs capability of providing fast and reliable testnet works to allow for the verifiability of encrypted credentials on the WIDE digital identity bridge. Through the provisioning of the Sepolia testnet, where the WIDE credential logging takes place, it enables users to break out of the closed identity ecosystems, such as Google and onboard their digital government EU identity document to Web3 in a privacy preserving way.\\n\\nThe OP not only lends legitimacy to WID3, but WID3 also enhances the feature and functionality set of the OP Stack by providing a novel concept of identity bridging - making the Superchain the hub for privacy-preserving onboarding of metadata-rich credentials in a user firendly way.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"The OP stack would not only lose relevance for the pan-European digital identity initiative, particularly in Malta, Germany, and Greece, but also turn into a monolithic trust layer for digital identity initiatives.\\n\\nWID3's ceasure to exist will put the OP Stack at risk of becoming irrelevant for non-financial interactions for EU residents and citizens when it comes to EU-compliant DAO creation, governmental digital identity interactions, and digital identity use cases that focus on Web3 social.\\n\\nIn short, it will hamper the openness of the OP Stack to a broad variety of use cases and make the integration of Lit Protocol with the OP Stack fall short of cross-chain and cross-domain digital identity bridging fall short of coming to fruition.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -3557,92 +3563,88 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x0bae27264b02cc7ab3b54a595b2f85d067554642e5089612db4f6a00f92867fa', + id: '0x3cad2fcfc5dc8fb8f549dbd057700f58619a1a9d03d2390dcb7f2041fd71dce7', applicationId: - '0x0bae27264b02cc7ab3b54a595b2f85d067554642e5089612db4f6a00f92867fa', + '0x3cad2fcfc5dc8fb8f549dbd057700f58619a1a9d03d2390dcb7f2041fd71dce7', projectId: - '0xb39431ee9d3ab706b0607075dea81f00ecfac821e53b04afef57e44c47feec38', + '0xdc64b926541adf4b79f4dd2bce21bae08a72926dcf85833c9c59119623996b28', category: 'Utility', applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'WID3+ Consortium', + 'PW subcategory': '', + organization_name: 'GregCardo', organization_description: - 'The WID3+ Consortium is a group of leading Web3 and digital identity experts in Germany and Malta, who joined forces to solve some of the most pressing issues in Web3 contracting. As a business-to-business (B2B) suite WID3+ maintains the digital identity bridge wid3.app, as well as conducts research and development for creating AUTHBOND as bid bond platform. The WID3+ Consortium is lead by ACURRAENT UG and previously included the University of Malta. In 2023, WID3+ participated in NGI TRUSTCHAIN #OC1 and has now become part of NGI TRUSTCHAIN OC3.', + 'GregCardo is a software developer with a passion for innovation and problem-solving. Experienced in collaborating with global teams and eager to contribute creative solutions within the Ethereum Ecosystem.', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/c63083a0-b4fb-4951-9ed5-90dfe7399ce7.png', + 'https://storage.googleapis.com/op-atlas/1e73fbdc-3319-4e74-9d4a-a0a14325ced1.png', organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/95b565ff-ccb8-4de9-8f67-d1e9acdf35df.png', - socialLinks_website: - "['https://wid3.xyz/', 'https://www.linkedin.com/showcase/wide-consortium/', 'https://github.com/Consortium-WIDE', 'https://acurraent.com/']", + 'https://storage.googleapis.com/op-atlas/ca72c3c1-190b-493a-ab8d-1a5dafa296d5.png', + socialLinks_website: [], socialLinks_farcaster: [], - socialLinks_twitter: 'https://twitter.com/acurraent', - socialLinks_mirror: - 'https://mirror.xyz/0x81865ebc7694dfba6608f6503bba50abb04644b4', - team: "['226300', '11745', '850759']", - name: 'WID3 - Web3 Identity for DAOs and Education', + socialLinks_twitter: '', + socialLinks_mirror: '', + team: "['261806']", + name: 'Ethereum Execution Client Specification Code Quality and Refactor Enhancements', description: - 'WIDE is on a mission to bridge the gap between your skills and the opportunities available in Web3. Proving one’s credentials and accessing relevant opportunities is a time-consuming process. WIDE simplifies validating your credentials by allowing you to easily access and share your qualifications (and more). The goal is to allow you to participate in online governance, enrol to local initiatives, and join your favourite DAO based on your skills – enhancing your engagement in the Web3 world and beyond.', + 'This project is dedicated to improving the robustness, maintainability, and efficiency of the Ethereum execution specs clients through targeted code quality enhancements and refactoring efforts.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/b8a6f5d1-f6e0-444e-9235-7f36253ea259.png', + 'https://storage.googleapis.com/op-atlas/cc7123c4-abe2-45b8-8d21-9088a643869a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/2f52dab1-3f31-46bb-868f-49558f19ce44.png', + 'https://storage.googleapis.com/op-atlas/38c4523d-4b0d-48ec-bc64-6b854005ba10.png', project_socialLinks_website: - "['https://wid3.xyz/', 'https://wid3.app', 'https://dungeonmaster.wid3-demo.app/', 'https://cryptohubmalta.wid3-demo.app/', 'https://trustchain.ngi.eu/wide/']", + "['https://github.com/richardgreg/execution-specs', 'https://github.com/richardgreg/execution-spec-tests']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://twitter.com/acurraent', - project_socialLinks_mirror: - 'https://mirror.xyz/0x81865ebc7694dfba6608f6503bba50abb04644b4', + project_socialLinks_twitter: '', + project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Ethereum client implementations', 'Research which informs Ethereum core development']", + "['Ethereum client implementations', 'Ethereum test networks']", impactStatement_statement: - "[{'answer': 'WID3 relies on OPs capability of providing fast and reliable testnet works to allow for the verifiability of encrypted credentials on the WIDE digital identity bridge. Through the provisioning of the Sepolia testnet, where the WIDE credential logging takes place, it enables users to break out of the closed identity ecosystems, such as Google and onboard their digital government EU identity document to Web3 in a privacy preserving way.\\n\\nThe OP not only lends legitimacy to WID3, but WID3 also enhances the feature and functionality set of the OP Stack by providing a novel concept of identity bridging - making the Superchain the hub for privacy-preserving onboarding of metadata-rich credentials in a user firendly way.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"The OP stack would not only lose relevance for the pan-European digital identity initiative, particularly in Malta, Germany, and Greece, but also turn into a monolithic trust layer for digital identity initiatives.\\n\\nWID3's ceasure to exist will put the OP Stack at risk of becoming irrelevant for non-financial interactions for EU residents and citizens when it comes to EU-compliant DAO creation, governmental digital identity interactions, and digital identity use cases that focus on Web3 social.\\n\\nIn short, it will hamper the openness of the OP Stack to a broad variety of use cases and make the integration of Lit Protocol with the OP Stack fall short of cross-chain and cross-domain digital identity bridging fall short of coming to fruition.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'My contributions to the Ethereum Execution Specs and Ethereum Execution Specs Test projects are crucial in supporting the OP Stack.\\n\\nUpdating and maintaining the projects ensured that the projects were immaculate so the OP Stack could adhere to the latest Ethereum specifications and standards. That helps preserve compatibility and reliability across different forks and transaction types within the OP Stack ecosystem, among other benefits.\\n\\nFurthermore, my work on the Execution Specs Test project, which involves updating tests to align with new Solidity versions and refactoring types in the Execution Specs for better maintainability, is of utmost importance. This work ensures the correct and efficient operation of the OP Stack, catching issues early and validating compliance with specifications. I also contributed to documenting the execution specs and related test frameworks, making it easier for developers to understand and implement the OP Stack’s requirements and functionalities.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'I provide immense support to the main developers; if they lose that, it will put a significant strain on them. In turn, the OP Stack might struggle to stay in sync with evolving Ethereum specifications updates, potentially leading to compatibility issues and deviations from established standards.\\n\\nFurthermore, without updated documentation and tests, it would become more challenging for developers to understand and work with the OP Stack effectively, potentially slowing down development and leading to implementation errors.\\n\\nMy contributions play a vital role in supporting Ethereum core devs and providing clear documentation. Without these efforts, the OP Stack would face increased risks and challenges in maintaining its network integrity and functionality.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 10000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x1547a722f7731b439b97428c31925100ef49ae443e32f5bba766268c296a3379', + id: '0x43a266d84aa8ce67af3e6afc1bed4021fd7a06693e9eee94e1ef4767b429cc0d', applicationId: - '0x1547a722f7731b439b97428c31925100ef49ae443e32f5bba766268c296a3379', + '0x43a266d84aa8ce67af3e6afc1bed4021fd7a06693e9eee94e1ef4767b429cc0d', projectId: - '0xa9860e1ba61461740831e00d03eb22660e47e8e9087b2ea2e4441f21210fb786', - category: 'Social', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Be Part Of Art Collective', + '0x2c97e213fef2bd3f30a71edf6ed48232640368d0083dc0a134a1b59391639bde', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'Formal Verification @ Ethereum Foundation', organization_description: - "The Be Part Of Art Collective has one goal. Build and maintain the first infinite art canvas. A neverending art canvas that connects people through art. Imagine it as a giant puzzle that hadn't been designed yet. It starts with one piece and keep growing by adding new art by different artists. On this canvas it's not only about the artist's art but also about how he can merge his/her art with the art that already exists on the canvas.", + 'Ethereum Foundation team dedicated at developing Formal Verification Tools for Ethereum Smart Contracts', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/dbddfc21-a8c4-42b9-b7cc-f29707c04ef9.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/bfb32a2a-dd80-44e6-b9f5-219700b8ee29.png', - socialLinks_website: "['Bepartofart.com']", + 'https://storage.googleapis.com/op-atlas/5b371001-feaf-4002-8671-c4314150460c.png', + organizationCoverImageUrl: '', + socialLinks_website: "['https://fv.ethereum.org']", socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['413209']", - name: 'Be Part Of Art', + team: "['843949', '844134', '845018', '848682']", + name: 'hevm', description: - "In a time where the world is divided, I feel it is time to build projects that connect. In a time where everyone is focusing on themselves, I feel it is time to build projects that focus on collaboration. \n\nBe Part Of Art is a one of a kind art project. It is a blank infinite art canvas that invites graphic artists from around the world to contribute and collaborate with each other to create something that has never been done before. An artwork that is never finished, an artwork that is always growing into something bigger. An artwork that evolves as time goes by. \n\nI imagine it as a digital \"cave painting\"... A place where you can see art, the artists and life merge into something that will be forever available to mankind.\n\nDo you have what it takes to Be Part Of Art? \n\nIn this first stage of the project I'd like to do a bit more research about the technical requirements and technical feasibility of the project. Find the initial group of artists to create the first piece and spend time planning the next phases. \n\nI'd like to spend some time brainstorming with different artists to see how they feel about the project and if they would want to collaborate. Since this all takes time I'd like to request an initial capital to cover the costs so I can focus on this project and the research full-time.", + 'hevm is an open source, state-of-the art, fast symbolic and concrete EVM execution engine. It has a library interface and can be used as a component in high level tooling. It can be used stand-alone for ad-hoc analysis and symbolic unit test execution.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/53ee4bea-4882-4f2c-8f71-2b6d747a28b2.png', + 'https://storage.googleapis.com/op-atlas/d7cf4059-4f9c-48aa-a37a-df2f8c81933c.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/8fd63b00-4bcd-447a-9e9b-7bfd805f3242.png', - project_socialLinks_website: "['Www.Bepartofart.com']", + 'https://storage.googleapis.com/op-atlas/020d34f6-e8bb-43b5-8508-7935d2b00583.png', + project_socialLinks_website: + "['https://hevm.dev/', 'https://github.com/ethereum/hevm/']", project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': \"There hasn't been any impact yet because I have only recently decided to start working on this project again. With the initial funding I will make sure do the research needed to decide if this project has any marit and what the best way will be moving forward.\\n\\n\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"1. Digital Artists \\n2. Consumers that love art\\n3. The OP Stack \\n\\nFor digital artists it's a new way to showcase their work and skills. It will not be easy to claim a spot on the canvas, it will require winning multiple voting rounds and convincing the community you are the right fit for that spot. But once you do, your work will be there forever. \\n\\nFor people that love art, it will be a new way to interact with it. Not only being able to decide how the canvas should move forward by voting, they'll also be able to buy their favorite pieces of the canvas to gift to their friends or family or keep for themselves.\\n\\nThe OP stack will have a new innovative way to display it's strength, this time not rooted in DeFi. I feel a lot of people are not yet comfortable with blockchain and/or DeFi and because of that they aren't using the OP stack yet. With this project the OP stack will be able to show how a blockchain can be used to keep track of ownership of the first infinite art canvas. \\n\\n\\n\\n\\n\\n\\n\\n\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': 'The application of formal methods is widely recognized as one of the most effective techniques for ensuring correctness in software development. Symbolic execution is generally considered a best practice within smart contract development, as well as in traditional high assurance domains.\\n\\nhevm is a cutting edge symbolic execution engine for the EVM. Its library interface allows developers to build and experiment with new symbolic analysis tooling. It can be used to analyze programs deployed to any EVM based blockchain.\\n\\nhevm has been under active development since 2017. Since October 2023 we have made the following improvements:\\n\\n- Significant performance optimizations\\n- Improved ux and documentation\\n- A fully symbolic model for addresses\\n- An abstract gas model\\n- Support for the Cancun hardfork (WIP)\\n- Expanded support for testing specific features (\"cheat-codes\")\\n\\nThese improvements make hevm faster, easier to use, and expand the range of programs that can be analyzed.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'OP stack developers would lose access to a powerful and cutting edge symbolic EVM implementation. Development of analysis tooling for the OP stack would become harder. Application developers targeting the OP stack would lose access to tools checking for safety and correctness.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -3651,14 +3653,14 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x1c8ed7271463dff518cd4bc65e7c57d70746996a755bd9c5db403f3b389b8d5c', + id: '0x6ad58623b17b1e11053007d266b59849c7d850ca4f34946bccf6f4db1e652c85', applicationId: - '0x1c8ed7271463dff518cd4bc65e7c57d70746996a755bd9c5db403f3b389b8d5c', + '0x6ad58623b17b1e11053007d266b59849c7d850ca4f34946bccf6f4db1e652c85', projectId: - '0xcb0434aaf86a5dca68f96edefc22bf04a16bbfaa48b0a4a40c844f1afb8d7b1e', - category: 'NFT', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + '0x85bef37b528ec9d7e1a9cb864e298e3c117071507acd3f522c28561435d167f5', + category: 'DeFi', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -3668,67 +3670,63 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'BASE BTC EARTH 🌍', + name: 'rhinofi', description: - "Hello, I am a designer. I am an artificial intelligence designer. I am 25 years old. I'm from Turkey. I need some support. I want to do more for Optimisim. I don't know much about Github. But everything I did here is as you want. I increased the on-chain activity and interacted with 420 wallets. https://element.market/collections/base-btc-earth", + 'rhino.fi is the ultimate Layer 2 bridge for effortlessmulti-chain token movement', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/f7b97236-dce1-4e44-873c-74bb5f31b49c.png', + 'https://storage.googleapis.com/op-atlas/ddd580ed-71e8-4a88-be3b-32d302c4821c.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/963d18b8-32a1-4d7c-a09a-640cd20e4f22.png', - project_socialLinks_website: - "['https://element.market/collections/base-btc-earth']", + 'https://storage.googleapis.com/op-atlas/719357a2-dff4-43d7-a508-cbf7999186d1.png', + project_socialLinks_website: "['rhino.fi', 'https://app.rhino.fi/']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + project_socialLinks_twitter: 'https://x.com/rhinofi', project_socialLinks_mirror: '', pricingModel: 'pay_to_use', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Infrastructure to test and deploy chains']", impactStatement_statement: - "[{'answer': \"My NFT collection enabled the testing, distribution and operation of OP chains with its sales and interactions. NFT collections with artificial intelligence content attracted people's attention and gained interaction.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our tools were used by superchain users, which gave them easy access to the cheap and accessible nft side. They accessed and purchased the first AI-powered nft collections.This is true for all the projects I do.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'As a layer2 bridge rhinofi plays a crucial role in fostering interoperability within the blockchain ecosystem, and especially for the OP Stack ecosystem. \\n\\nBy facilitating cross-chain transactions across 27+ Active EVM and non-EVM chains, and therefore providing a route for users to transition from non-OP Stack chains to OP Stack chains, rhinofi significantly lowers the barrier to entry for users interested in discovering the unique opportunities within the OP Stack ecosystem. This improved user experience not only benefits individual users but also contributes to the overall growth and adoption of OP Stack-based platforms.\\n\\nTo date, rhinofi has achieved the following in regards to the OP Stack ecosystem:\\n\\n- 7 chains supported - OP Mainnet, Base, Mode, Blast, Zircuit, Mantle, opBNB\\n- Total bridged volume on OP Stack chains - $810mio+\\n- Total TX on OP Stack chains - 1,7mio+\\n- Total User bridged from/to OP Stack chains - 1,3mio+\\n- OP Stack campaign - https://rhino.fi/rhino-summer/', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Over the years, rhinofi has positioned itself as a trusted bridge that users often choose as their primary option due to its excellent user interface and overall experience. The absence of rhinofi would not only diminish the potential for new liquidity to flow in from non-OP Stack chains but also reduce the fluidity and ease of movement of liquidity across the OP Stack chain.\\n\\nMoreover, a reduction in available bridging routes to the OP Stack - following a hypothetical decommissioning of rhinofi - would lead to an increased reliance on a smaller number of bridge partners, potentially concentrating risks among fewer actors. Such a scenario could make the ecosystem more vulnerable to disruptions and limit the diversity of options for users seeking to interact with OP Stack chains.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 38223, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x20f4347b57f82b8c7da5b6a1e88e25b5e37662484ab029b4bef81b4ba85fd06a', + id: '0x77e86299f288162bccb5e09788c6df4e63f960e4711e10259ea5e6cb9b3ae3e1', applicationId: - '0x20f4347b57f82b8c7da5b6a1e88e25b5e37662484ab029b4bef81b4ba85fd06a', + '0x77e86299f288162bccb5e09788c6df4e63f960e4711e10259ea5e6cb9b3ae3e1', projectId: - '0x0e87091523c98dd4e4a4e4e1b695bf67c3db239bba68e7e45e01932293936985', - category: 'Governance', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Optimism Design', + '0x6664074da8453628ebad1cf90ca0a6a313febf2e4909d3aba0c0360f41204c73', + category: 'NFT', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: '', organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0f886e21-30aa-411f-bf60-da1cfe90c3fd.png', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['5779', '844381']", - name: 'Retro Funding Site Design', + team: '', + name: 'MATUBMA', description: - 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', + 'I just registered for the SUNNY Awards to be eligible for 540K OP!', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/86341a25-24ac-4e74-bd33-ebf7622e8863.png', + 'https://cdn.charmverse.io/user-content/9100e3fe-1f1e-47cd-a424-e67c1ac6d523/50f6c156-3fd6-4220-80d5-045ef1658f8d/wazowski-mike.gif', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/2183cd4a-1222-48d8-9f15-09edcb6aaf39.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + 'https://cdn.charmverse.io/user-content/9100e3fe-1f1e-47cd-a424-e67c1ac6d523/84aaead4-8b2c-4cc2-8f4e-9ea1d4579984/6181.jpg', + project_socialLinks_website: "['https://zora.co/@compile']", + project_socialLinks_farcaster: "['https://warpcast.com/matubma']", + project_socialLinks_twitter: 'https://x.com/extremelyluxury', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'I introduced people to the capabilities of the NFT marketplace Zora, now its development is going further and I also continue to work, for example, the weekly update with the listing of NFT on the Uniswap dex was warmly received by people', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Many people don’t even understand what cryptocurrency is and how to work with it, I help in this regard, I’m sure that if guys like me disappear, it will set the development of cryptocurrency technology back several years', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -3737,14 +3735,14 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x21812d33e89a28c04f68dc3932b532c25f644747eb7e2f5c4aecf23afef1291a', + id: '0x8b28b3226a7135786daed49dd67aac6c97a29c768ea0337c54bbcfb4d9388a07', applicationId: - '0x21812d33e89a28c04f68dc3932b532c25f644747eb7e2f5c4aecf23afef1291a', + '0x8b28b3226a7135786daed49dd67aac6c97a29c768ea0337c54bbcfb4d9388a07', projectId: - '0xa7d3f54fe62bbff857bba25d18d385d943741e6d970e5491d1341218e54a6762', + '0xebc40a8bfaf3b8103e2b5da3a8c89b97daf6bd8b2096b847ef686dd3245ae960', category: 'Social', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -3754,24 +3752,24 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'FANBASE ✨', + name: 'Based Italia', description: - 'This is a fanbase community that operates in the field of social engagement.', + 'Based Italia is the Italian side community of Base through which, with my colleagues, we try to onboard in a nation that has a low crypto adoption rate.\nIn recent months we have engaged artists and influencers, published articles and shared experiences with the Base Global Community.\nThe project was born as part of Crypto4bunnies, a 360-degree crypto dissemination project.', profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/6020d938-f07e-4f95-a756-5562f175762e/f6550061-4756-49ac-b3da-6dc87fd589a9/76716e6b0c575e52832cf0f58cae6f2c.jpg', + 'https://cdn.charmverse.io/user-content/9a446931-d305-407c-891e-5df7065eb99b/67e582d9-957a-41ab-acf9-0fff07434971/ItalyNFT.png', projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/6020d938-f07e-4f95-a756-5562f175762e/906bad2e-6a95-4bba-9261-aeaf88ff7afe/Screenshot_20240823-030141_1.jpg', - project_socialLinks_website: "['https://www.fanbase.app/']", - project_socialLinks_farcaster: - "['https://warpcast.com/denzooo', 'https://warpcast.com/phynn', 'https://warpcast.com/cepodr']", - project_socialLinks_twitter: '', + 'https://cdn.charmverse.io/user-content/9a446931-d305-407c-891e-5df7065eb99b/8b8b8a60-ea49-4b8f-9c8e-16ea4f4f07d5/onboardsolo_5.gif', + project_socialLinks_website: + "['https://paragraph.xyz/@baseitalia/community/Base%20Italia', 'https://paragraph.xyz/@crypto4bunnies', 'https://medium.com/@fr.dinardo', 'https://x.com/basedita']", + project_socialLinks_farcaster: "['https://warpcast.com/~/channel/base-it']", + project_socialLinks_twitter: 'ifiwasfrank', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Services for deploying and hosting an OP Chain.']", + "['Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'My project is to spread OP chain services through my infrastructure, through various media and networks.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Everyone can use my tools to explore much deeper into the op chain, the benefit is to get to know more about the op chain through my infrastructure.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'Based Italia can support OP stack with its specific outreach and onboarding of new users. Since we are not devs, our goal is to make onchain access easy for all users who would like to approach this world but, due to technical difficulties, fail. ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'By losing Based Italia, OP Stack would lose an important territorial community. Although we have only recently started, we are well established in the Based environment and already have a decent community. Without us, a fresh start would have to be made. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -3780,147 +3778,101 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x30fae4e752f5b084ed2a743e515374988876ce8b0cf0672311907c5b7254729b', + id: '0x969f411e6dc247aab187d46953a9823e0d9efcc82e12065494c05f34316b7515', applicationId: - '0x30fae4e752f5b084ed2a743e515374988876ce8b0cf0672311907c5b7254729b', + '0x969f411e6dc247aab187d46953a9823e0d9efcc82e12065494c05f34316b7515', projectId: - '0x6d2ee66c931e5c3be17e1417e38617f1efee5be223cf53dd507779d68229a198', + '0x88f63d18a020e4aefd6093b5234cc5e11e085698bcc7652b370d38939c39097f', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'brainbot/Shutter', - organization_description: '', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: '🏰 BuidlGuidl', + organization_description: + 'BuidlGuidl is a curated group of builders creating open source tools and educational content.\n\nThe main focus is developer growth and mentoring. We build tools and educational content to teach the next wave of builders how/what they can build on Ethereum / EVMs.\n\n- **Tooling**: We built and actively maintain [🏗 Scaffold-ETH-2](https://scaffoldeth.io/), an open-source toolkit which allows for rapid prototyping and full scale dApp development on Ethereum. \nWe have also lots of handy tools (OSS) created with SE-2 by our community, like [Abi.Ninja](https://abi.ninja/), [Hacked Wallet Recovery,](https://hackedwalletrecovery.com/) [address.vision](http://address.vision) and others.\n\n- **Education**: We provide a free curriculum at 🏃‍♀️ SpeedRunEthereum.com. A hands on, guided series of challenges to learn how to code and deploy smart contracts all while receiving the assistance of our community. \nWe also conduct monthly batches with developers who have just finished SRE, in which we encourage teamwork and collaboration among them, developing a group project.\nAlso lots of content in youtube, like BG Labs, Web2 to Web3, BG Episodes, among other video series, and IRL talks and workshops in ETH Global, Edcon and other events.\n\n- **Small Grants** We have different funding mechanisms to support high-impact devs, like BuidlGuidl streams, Cohort Streams towards a common objective, Ecosystem impact grants and BG Community Grants.', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/d7e880ed-d48a-4329-97a9-75f21d815def.png', - organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['316218', '358280']", - name: 'Shutterize Optimism SDK (SHOP SDK)', + 'https://storage.googleapis.com/op-atlas/f6ed26e1-c5be-4ea9-bbce-d314c1a1034d.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/f1b0c3a8-64a7-4bbb-8150-8817f47a1dbb.png', + socialLinks_website: "['https://buidlguidl.com/']", + socialLinks_farcaster: "['https://warpcast.com/buidlguidl']", + socialLinks_twitter: 'https://x.com/buidlguidl', + socialLinks_mirror: 'https://mirror.xyz/news.buidlguidl.eth', + team: "['6048', '343051', '390184']", + name: '🏰 BuidlGuidl Client', description: - 'shop-sdk is a custom ethersjs provider, that allows to send shutter encrypted ("shutterized") transactions on Shutter-Optimism.\n\nShutter-Optimism is an Optimism testnet, that provides a mechanism to include Shutter encrypted transactions.\n\nShutter is a distributed key generation (DKG) threshold encryption protocol, that enables applications and/or users to encrypt arbitrary data, commit the encrypted message (i.e. by sending it in a transaction) and have it revealed after a certain condition is met (i.e. once the position of the transaction in a future block is confirmed). Shutter\'s threshold decryption scheme, where a threshold of n out of m key holders ("keypers") need to release their decryption key share for successful reveal, enables an environment where censorship, by not releasing decryption keys, and collusion, by peeking into encrypted messages before the reveal condition was reached, become very unlikely.\n\nIn Shutter-Optimism this allows to build MEV-resistant applications.\n\nThe intention of shop-sdk is to make it as easy as possible to transform a traditional application, that could run on Optimism, into a MEV protected version running on Shutter-Optimism.', + "Project is in the early stages, but we already have an MVP that helps you get a reth full node up the fastest. One command, wait a couple days, and that’s it!\n\nOur goals with the client are:\n\n- Put lots of ETH nodes in LATAM, SEA and Africa.\n- Second highest priority is getting devs their own local node to build their dapps (indexers.. ). We aren't just strengthening the network but helping devs continue their edudaction\n- Third priority is building the distributed RPC and transaction service\n\nHere are the components we've built so far:\n\n- **Bootstrap Script**: We have created a bootstrap script, a one-liner command that users can paste into their terminal to clone and run the BuidlGuidl client. It is publicly available here: nodes.buidlguidl.com This script simplifies the setup process for new node operators. The code for this script is publicly available here: https://github.com/BuidlGuidl/buidlguidl-client\n\n- **BuidlGuidl Client**: We've developed a preliminary version of the BuidlGuidl client that can spin up both Execution Layer (EL) and Consensus Layer (CL) nodes. This client also includes an RPC proxy that checks in with our central hub. You can check out the initial code here: https://github.com/BuidlGuidl/buidlguidl-client\nWhile these components are functional, they are still in undergoing continuous improvement. Our focus now is on refining these tools and expanding their capabilities to ensure reliable performance and ease of use for the community.\n\n- **Proxy Server**: We have set up an initial version of our proxy server (rpc.buidlguidl.com), which will act as the hub for our distributed RPC system.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/563c3a20-cbfb-4a1f-b03a-058b580eb2ba.png', + 'https://storage.googleapis.com/op-atlas/95eb3b60-a01d-4142-b9f2-f7d8b1deaeb2.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/0407765b-33f4-4c22-9392-faeae91c37cc.png', + 'https://storage.googleapis.com/op-atlas/98f8992d-d350-410c-abc0-de560fdc070e.png', project_socialLinks_website: - "['https://shutter.network/', 'https://linktr.ee/ShutterNetwork', 'https://blog.shutter.network/']", - project_socialLinks_farcaster: "['https://warpcast.com/shutter']", - project_socialLinks_twitter: 'https://x.com/ShutterNetwork', + "['https://client.buidlguidl.com/', 'https://buidlguidl.com/']", + project_socialLinks_farcaster: "['https://warpcast.com/buidlguidl']", + project_socialLinks_twitter: 'https://twitter.com/buidlguidl', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", - impactStatement_statement: - "[{'answer': 'The intention of shop-SDK is to make it as easy as possible to transform a traditional application that could run on Optimism into an MEV-protected version running on Shutter-Optimism.\\n\\nshop-sdk is a custom ethersjs provider that allows to send shutter encrypted (\"shutterized\") transactions on Shutter-Optimism.\\n\\nShutter-Optimism is an Optimism testnet, that provides a mechanism to include Shutter encrypted transactions.\\n\\nShutter is a distributed key generation (DKG) threshold encryption protocol, that enables applications and/or users to encrypt arbitrary data, commit the encrypted message (i.e. by sending it in a transaction) and have it revealed after a certain condition is met (i.e. once the position of the transaction in a future block is confirmed).\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'DEXs and DeFi applications, along with their users, stand to benefit the most from our work on the OP Stack, particularly from our SDK. The SDK allows for easy integration of encryption at the front-end level, providing shielded trading and protection against front-running and sandwich attacks. This results in fairer pricing and enhanced security for users. Although we are still in discussions with DEXs like Velodrome on Optimism, they are actively researching how to integrate these features.', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: 'Rejected', - id: '0x3142a5d468f9c6cd587619a0fccf73dc77835149f1ca31e579cb51501dcfd285', - applicationId: - '0x3142a5d468f9c6cd587619a0fccf73dc77835149f1ca31e579cb51501dcfd285', - projectId: - '0xf04c2c47624bc0191001f655e147986439541493ee06e5ec5b8576d26d26d057', - category: 'Social', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Rentality', - organization_description: - 'Rentality is an innovative project aimed at tokenizing real assets – cars. We transformed the car rental business process from web2 to web3', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/500276b5-67df-434d-a96b-56b00ebbb81c.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/c6d3c01f-ba67-4f71-ab5e-2eea8e6759ee.png', - socialLinks_website: - "['https://app.rentality.xyz/', 'https://rentality.xyz/']", - socialLinks_farcaster: "['https://warpcast.com/rentality']", - socialLinks_twitter: 'https://x.com/Rentality_Info', - socialLinks_mirror: - 'https://mirror.xyz/0x263660F0ab0014e956d42f85DccD918bBa2Df587', - team: "['631453']", - name: 'Rentality', - description: 'Transforming the future of car rentals with blockchain', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/c6b7ce00-ff3c-4bbb-90a1-6cce594896e3.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/ef7d6609-1026-4387-b1f4-9ca108fc4c1b.png', - project_socialLinks_website: "['https://app.rentality.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/rentality']", - project_socialLinks_twitter: 'https://x.com/Rentality_Info', - project_socialLinks_mirror: - 'https://mirror.xyz/0x263660F0ab0014e956d42f85DccD918bBa2Df587', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - impactStatement_subcategory: - "['Work on core components of the OP Stack, including client implementations, modules, and modifications.']", + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': 'We believe that our project can make a significant contribution to the OP blockchain ecosystem. We estimate that in 3 months after MVP we will have around 1,500 active users of the service and over 16,000 transactions per month. We will attract more than 80,000 customers who will make more than 2,000,000 transactions every month by the end of 2027, we plan to grow by 40% per month. \\nWe plan to actively engage the community to increase the TVL of our platform and blockchain in the next release. Our strategy involves raising a minimum of 5 million from the community. These funds will be directed to the mass purchase of cars. We believe that group investment is a more affordable and efficient way to get a car. For example, one person cannot always afford to buy a car for 100,000, but a thousand people united by our service can easily collect the required amount.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'The web3 community lacks quality services, which are usual for web2. Rentality is a project from the direction of RWA (Real World Assets), which offers car rental and tokenization services. Our experience allows us to build a new trend in web3 - the transformation of RWS (Real Word Services) services, which will later become a benchmark for the entire web3 direction. The entire web3 community gets access to the convenient services they are usually using web2, thereby bringing web3 closer to mass adoption. We eliminate intermediaries between the guest and the host, creating a fair price for the community.\\nExample\\nWhen booking a car on web2, both the guest and the host pay for the services and commissions of various intermediaries, from Google and financial institutions to Turo, which operates with an inefficient monopoly structure. These commissions significantly affect the price of the product. ', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': 'Our project supports the OP Stack by:\\n\\n1. **Expanding potential OP Stack node operators**: Our one-command setup simplifies node running, potentially increasing future OP Stack node operators.\\n2. **Growing the developer community**: Easier participation in Ethereum at the peer to peer level, potentially increasing exploration of Layer 2 solutions like OP Stack. This may lead to more dapps developed in the OP Stack, further enriching its ecosystem and driving adoption.\\n3. **Enhancing Ethereum mainnet decentralization**: More nodes in underserved regions also strengthen indirectly the OP Stack.\\n4. **Improving infrastructure reliability**: A safer and more robust networking layer on Ethereum makes everything up the stack safer and more robust', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"There probably wouldn't be a huge gap if the BuidlGuidl Client didn't exist. It's more of an efficiency play, making it easier to run nodes and, in turn, helping the Ethereum network — which the OP stack settles on — become more decentralized. \\n\\nWithout us, some node runners certainly wouldn't have their nodes up, while others would have to deal with the poor user experience of manually spinning up EL and CL pairs.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 227000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x34d6f272baccb8bb8ee494ec6c31d8d3e0f66623f57a040ea04cdd4d7e03bd1a', + id: '0x981b75ccf20308ec809c133e42edeb87031964d718753a949e9b9b3397775b97', applicationId: - '0x34d6f272baccb8bb8ee494ec6c31d8d3e0f66623f57a040ea04cdd4d7e03bd1a', + '0x981b75ccf20308ec809c133e42edeb87031964d718753a949e9b9b3397775b97', projectId: - '0xbc6524eaed9585ebbca313f8112c3d8ed4a4ac7ff9b5bd6ef92eff715d0d2a58', - category: 'DeFi', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'RedStone Oracles', + '0x0b0abc06da9c1288848a05e4a330ae3ac54474143f1c2a61d71c2c3fb37cf217', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: '', organization_description: '', organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: "['https://redstone.finance/']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/redstone_defi', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['849400']", - name: 'RedStone Oracles for OP-stack chains', + team: '', + name: 'ERC 6551 Token Bound Accounts Public Goods Dune Research by sealaunch', description: - "RedStone is fastest growing Modular Oracle with clients including Pendle, Morpho, Ethena, Etherfi, Renzo, Puffer, Venus, Silo, Sommelier, Gearbox, Frax, Merlin Chain, BOB and 70+ other companies. We're live on Optimism and OP-Stack chains.", + 'sealaunch is onchain intel team dedicated in-depth onchain and Dune research for chains, protocols and dApps building on Ethereum. We worked closely with the ERC-6551 core dev team to develop and provide onchain data research that informed the development, strategy and adoption of this standard across EVM chains and OP Stack chains. Currently on the Top #10 Wizards on Dune.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/70be0977-18f4-4638-83a5-909bdb7547fd.png', + 'https://storage.googleapis.com/op-atlas/e79623bd-9a9a-4fea-a6cd-2bfdd76b2ae4.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/37797c19-fde3-47ca-a06e-781d63e85941.png', - project_socialLinks_website: "['redstone.finance']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/redstone_defi', + 'https://storage.googleapis.com/op-atlas/b83423b3-5421-4d51-ba77-1e92be871768.png', + project_socialLinks_website: "['https://sealaunch.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/sealaunch']", + project_socialLinks_twitter: 'https://x.com/sealaunch_', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", + "['Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': \"Oracles being the backbone of DeFi are essential piece of infra needed for operating your OP-stack chain. Price feeds are essential to have any kind of DeFi activity on your chain. (enabling Lending, Derivatives, CDPs, Composable leverage and much more). Thanks to our modular architecture (easy EVM deployments, which is a perfect fit for OP stack chains) and previous grant recieved from foundation (Season 4 Grant) we were able to establish close cooperation with multiple OP-Stack chains, on a lot of these chains we're available in both pull & push models (where we need to deploy and maintain relayer infrastructure), and became the oracle of choice for those ecosystems (bootstraping them also with our partners intros and connections to help onboard new dApps).\\n\\nRedStone is currently available on these chains:\\n- Op Mainnet\\nIn the Pull & push model, we have integrations with Silo, Granary.\\n- Base\\nIn the Pull & push model, currently on base our feeds are used by Morpho, Reserve\\n\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"\\n- Blast\\n - In the Pull & push model, we're the main oracle provider on blast and were first ones to introduce push model feeds there (including ecosystem native ones), we won big bang competition, currently ~8 protocols use our price feeds there.\\n- Mantle\\n - In the Pull & push model, we have integrations with Pendle, Native, Skate Fi protocols there.\\n- Mode\\n -In the Pull & push model, we are the oracle of choice for mode and helped bootstrap their ecosystem together with our partners. We cover all dApps there with our price feeds: LayerBank, IONIC, Ironclad, LogX.\\n- Fraxtal\\n - In the Pull & push model, again we were the oracle of choice for this ecosystem our push feeds were essential for defi there and are used by all significant protocols (i.e. Fraxlend)\\n- BOB\\n - In the Pull & push model, all major lending markets there use our feeds.\\n- opBNB\\n - In the Pul model.\\n- Zircuit\\n - In the Pull & push model, we're the oracle of choice there.\\n\", 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: 'foundation-grant', - grant_1_link: 'https://app.charmverse.io/op-grants/page-472203923295754', - grant_1_amount: 40000, + "[{'answer': 'The ERC 6551 Token Bound Accounts Dune dashboards and research by sealaunch proved to be a useful onchain data resource to first inform the core dev team on product strategy, growth and partnerships. Secondly, as public good and readily available to anyone and media to track and educate on this standard and our analysis was mentioned by media outlets like this [CoinDesk example](https://www.coindesk.com/learn/what-is-erc-6551-unpacking-the-backpack-wallet/). And lastly, had an impact in attracting builders on the OP Stack namely on Base and Optimism to adopt and build with this standard on their projects, like for example the [Perma App](https://per.ma/) - a photo social app built on Base. Helping the expansion and diversity of use-cases and utility of the OP Stack.\\n', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'We believe that onchain data dashboards helps build trust in projects building on the OP stack by providing visibility but above all transparency for any stakeholders who wish to verify the data. Additionally, having resources like open Dune dashboards helps anyone better understand and educate themselves on ERC 6551 key metrics and analytics and its ecosystem of chains, projects and builders.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x3562585a218194b1d74252545914f6b23b17c78de46f63bc50b1220dfa077994', + id: '0xb0913f628928698951760223a5691480a8f63b4545b5177490959b8966330272', applicationId: - '0x3562585a218194b1d74252545914f6b23b17c78de46f63bc50b1220dfa077994', + '0xb0913f628928698951760223a5691480a8f63b4545b5177490959b8966330272', projectId: - '0x7161c183e6d6f3f44499ffb4e28ed03c569089437778961f5b5544fb54791d4c', - category: 'Social', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + '0x83b46efce8ff1937a49883b323b22d3483d1843522f614ab4f20cc20545067bb', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -3930,246 +3882,195 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Web3Drop', - description: - 'Web3Drop is an all in one free alpha community. Providing giveaways, new NFT collections, tools, platforms and analysis.', + name: 'Jonas Project', + description: 'This is a description', profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/5884c2ec-f7dc-4176-ba5c-c04931d55117/a9c1d70c-476b-4bfa-a5aa-dc6586443751/web3drop.jpg', + 'https://storage.googleapis.com/op-atlas/72790b69-7d90-4f9c-9266-bc5ab8016183.png', projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/5884c2ec-f7dc-4176-ba5c-c04931d55117/bfc3b09a-0b59-401f-b67a-914718dea130/photo1711950336.jpeg', - project_socialLinks_website: "['https://linktr.ee/web3_drop']", + 'https://storage.googleapis.com/op-atlas/600b373a-da34-49c9-a7de-cd9306a7e90c.png', + project_socialLinks_website: [], project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'Web3_Drop', + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", + "['Ethereum client implementations', 'Ethereum test networks', 'Infrastructure to test and deploy chains', 'Languages which are dedicated to developing smart contracts', 'Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'Web3Drop is a comprehensive, free alpha community that offers a range of services for Web3 enthusiasts. It provides members with access to giveaways, the latest NFT collections, specialized tools, platforms, and in-depth analysis. The community is designed to keep its members informed and ahead in the rapidly evolving Web3 space.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Web3Drop is a comprehensive, free alpha community that offers a range of services for Web3 enthusiasts. It provides members with access to giveaways, the latest NFT collections, specialized tools, platforms, and in-depth analysis. The community is designed to keep its members informed and ahead in the rapidly evolving Web3 space.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': ' \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP awdwadawdawdawdadwawdawadwwadawdwa\\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'It is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP awdwadawdawdawdadwawdawadwwadawdwa\\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: '25m-50m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x3cad2fcfc5dc8fb8f549dbd057700f58619a1a9d03d2390dcb7f2041fd71dce7', + id: '0xb6a47d2320d9ed131185bb78d349d4fc7887e599bc0d99bb3d8978b1afed65c7', applicationId: - '0x3cad2fcfc5dc8fb8f549dbd057700f58619a1a9d03d2390dcb7f2041fd71dce7', + '0xb6a47d2320d9ed131185bb78d349d4fc7887e599bc0d99bb3d8978b1afed65c7', projectId: - '0xdc64b926541adf4b79f4dd2bce21bae08a72926dcf85833c9c59119623996b28', - category: 'Utility', + '0x193256f7753cf4350332ab5222990944b45d7ae280cd64e2bef8127ede2a2343', + category: 'Governance', applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'GregCardo', - organization_description: - 'GregCardo is a software developer with a passion for innovation and problem-solving. Experienced in collaborating with global teams and eager to contribute creative solutions within the Ethereum Ecosystem.', + 'PW subcategory': '', + organization_name: 'LexDAO', + organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/1e73fbdc-3319-4e74-9d4a-a0a14325ced1.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/ca72c3c1-190b-493a-ab8d-1a5dafa296d5.png', + 'https://storage.googleapis.com/op-atlas/ba15df22-7f86-42af-bbec-1013e2643e5c.png', + organizationCoverImageUrl: '', socialLinks_website: [], socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['261806']", - name: 'Ethereum Execution Client Specification Code Quality and Refactor Enhancements', + team: "['317851']", + name: 'LexDAO', description: - 'This project is dedicated to improving the robustness, maintainability, and efficiency of the Ethereum execution specs clients through targeted code quality enhancements and refactoring efforts.', + 'LexDAO is a legal engineering guild bringing law to code and coded law to the masses. Law is a public good.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/cc7123c4-abe2-45b8-8d21-9088a643869a.png', + 'https://storage.googleapis.com/op-atlas/47a526bd-99c9-4d75-9798-c4cbfaf90c3a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/38c4523d-4b0d-48ec-bc64-6b854005ba10.png', - project_socialLinks_website: - "['https://github.com/richardgreg/execution-specs', 'https://github.com/richardgreg/execution-spec-tests']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + 'https://storage.googleapis.com/op-atlas/98c31632-2782-43aa-af23-9727cbd886e2.png', + project_socialLinks_website: "['https://lexdao.org/']", + project_socialLinks_farcaster: "['@lexdao']", + project_socialLinks_twitter: '@lex_dao', project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Ethereum client implementations', 'Ethereum test networks']", + "['Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'My contributions to the Ethereum Execution Specs and Ethereum Execution Specs Test projects are crucial in supporting the OP Stack.\\n\\nUpdating and maintaining the projects ensured that the projects were immaculate so the OP Stack could adhere to the latest Ethereum specifications and standards. That helps preserve compatibility and reliability across different forks and transaction types within the OP Stack ecosystem, among other benefits.\\n\\nFurthermore, my work on the Execution Specs Test project, which involves updating tests to align with new Solidity versions and refactoring types in the Execution Specs for better maintainability, is of utmost importance. This work ensures the correct and efficient operation of the OP Stack, catching issues early and validating compliance with specifications. I also contributed to documenting the execution specs and related test frameworks, making it easier for developers to understand and implement the OP Stack’s requirements and functionalities.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'I provide immense support to the main developers; if they lose that, it will put a significant strain on them. In turn, the OP Stack might struggle to stay in sync with evolving Ethereum specifications updates, potentially leading to compatibility issues and deviations from established standards.\\n\\nFurthermore, without updated documentation and tests, it would become more challenging for developers to understand and work with the OP Stack effectively, potentially slowing down development and leading to implementation errors.\\n\\nMy contributions play a vital role in supporting Ethereum core devs and providing clear documentation. Without these efforts, the OP Stack would face increased risks and challenges in maintaining its network integrity and functionality.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': \"LexDAO supports the OP Stack by providing decentralized legal tooling and smart contract enforcement, ensuring compliance and dispute resolution for dApps built on the OP Stack. Our services enhance the security and trustworthiness of transactions, making legal mechanisms accessible, reducing legal risks, and fostering safer adoption of Optimism's modular blockchain infrastructure. This support is crucial for maintaining operational integrity and regulatory compliance within the OP Stack ecosystem, contributing to the overall growth and resilience of projects leveraging the technology.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"If LexDAO ceased to exist, the OP Stack would lose a critical suppor element of the layer of decentralized legal support, impacting dApps' ability to resolve disputes, enforce smart contracts, and manage legal compliance effectively. This would increase legal uncertainties, potential liabilities, and operational risks for developers and users, potentially undermining trust and adoption of the OP Stack ecosystem. Without LexDAO, projects would need to seek traditional, less efficient legal solutions, reducing the OP Stack’s appeal as a secure, compliant blockchain infrastructure for decentralized applications.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 10000, + grant_1_amount: 98000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x3d99c996bf2979b7ff827a4b2b2c56c65580bc75854ac41b30f034465801f301', + id: '0xbfd7b95f33e8c7a404c83f66590f3e39b05403211615887b0cd2dcd37cb9eea7', applicationId: - '0x3d99c996bf2979b7ff827a4b2b2c56c65580bc75854ac41b30f034465801f301', + '0xbfd7b95f33e8c7a404c83f66590f3e39b05403211615887b0cd2dcd37cb9eea7', projectId: - '0x5606763865e540ae9ff0c58f206a708f58ea117c08d8d8d1e74f768abeff084c', - category: 'Cross Chain', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Moved Network', - organization_description: - "Moved is a high-performance optimistic rollup solution built on the Optimism OP Stack, utilizing the Move smart contract language, designed to unlock Ethereum's full potential. By leveraging the power of optimistic rollups and the efficiency of Move, Moved enables fast, secure, and cost-effective transactions on the Ethereum network.", - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/88bd6479-8ded-472a-9c59-3a40d414ddae.png', + '0x482720e73e91229b5f7d5e2d80a54eb8a722309c26dba03355359788b18f4373', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: "['https://moved.network']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/MovedNetwork', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['831955']", - name: 'Moved Network', + team: '', + name: 'RubyScore', description: - "We're building the next generation Ethereum L2 blockchain on Optimism OP Stack that supports the most secure Move smart contract language. Our goal is to help the security and parallel execution of Move meet Ethereum’s vast liquidity.", + 'RubyScore - decentralized on-chain ranking protocol that represents layer 2 segmentation on 10+ parameters and scores the performance of wallets on various parameters. Key features of the platform include a unique on-chain reputation system utilizing SBT, advanced analytics to evaluate 10+ network parameters, and a distinctive ranking system with NFT rewards. API offering, which will allow user wallets to be verified through RubyScore, as well as using the API for verification through other dApps.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/4088a7f3-ba0f-4ec6-a6bc-ff4caaf666eb.png', + 'https://storage.googleapis.com/op-atlas/598566b6-6d99-4476-a7a0-3842629b7d71.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/68088c9d-248f-4b4c-b8b7-1e8c52c5569a.png', - project_socialLinks_website: "['https://moved.network']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/MovedNetwork', - project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - impactStatement_subcategory: - "['Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + 'https://storage.googleapis.com/op-atlas/b4311568-e6e6-4362-94d6-37af529d974c.png', + project_socialLinks_website: "['https://rubyscore.io/']", + project_socialLinks_farcaster: "['https://warpcast.com/rubyscore']", + project_socialLinks_twitter: 'https://twitter.com/rubyscore_io', + project_socialLinks_mirror: 'https://medium.com/@rubyscore.io', + pricingModel: 'freemium', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': \"Moved Network provides smart contracts for alternative VMs to be executed on the OP Stack and Superchain in the future. Almost all the smart contracts on OP Stack runs on EVM and we start providing access to Move smart contract execution.\\n\\nWe also started working on a zkMove implementation that will be used for ZK proof. As it turns out, it's easier to port ZK computation on a Move contract than a Solidity contract, because the Move bytecodes are a lot more similar to assembly language than the EVM bytecodes which makes them easier to transform into ZK computation language.\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'We believe bringing in Move smart contracts will make OP Stack a lot more secure, because Solidity has vulnerabilities which are solved in Move language.\\n\\nAnother benefit is with ZK proof the withdrawal times will be a lot shorter, currently in a few minutes and in the future in one block time when the underlying ZK computation speeds up. But still a few minutes is much better than 7 days.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': 'RubyScore core is built on Optimism and RubyScore also provides network and wallet metrics on a set of parameters. The RubyScore metrics dashboard includes such projects as Base, Zora, Mantle, opBNB, Blast, Manta built on OP-Stack, as well as Ethereum itself is integrated into the RubyScore metrics dashboard.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If RubyScore ceases to exist, it will have no critical impact, but users will be left without accurate metrics of networks built on OP-Stack and Ethereum, as well as viewing statistics of their wallet in these networks.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 'under-1m', + grant_1_amount: 67.262, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x40de60e9c823d1a278f432a95d4393218c8c0fd9ab8bc6c5e3202fa1b040c7a6', + id: '0xc662f93196869bd6f0d5bff407c17482ad7670f83ef687dd994c20ff8abd67ae', applicationId: - '0x40de60e9c823d1a278f432a95d4393218c8c0fd9ab8bc6c5e3202fa1b040c7a6', + '0xc662f93196869bd6f0d5bff407c17482ad7670f83ef687dd994c20ff8abd67ae', projectId: - '0xbd7efe4f47254e152bc1193b095dbad6711748577df2cd8f6a55c125ea58a376', + '0xd97260a3e245900619162288374fe95a901e462c2429a44bea21ff68ad7c0174', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'CryptoZombies', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'Consensus R&D', organization_description: - 'CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism.', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ddb6b9ee-66da-4d4c-b070-8c1876b5b21d.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/fb81a27f-db98-45a3-a0a0-cfa08e07e547.png', - socialLinks_website: "['https://cryptozombies.io']", + 'The Consensus R&D team focuses on both short and long-term research and development projects that aim to improve Ethereum’s security, sustainability, and scalability while retaining strong decentralization. This includes proof-of-stake consensus design, crypto-economic mechanism design, software simulations and experiments, spec writing, security assessments, testing, and more.', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: [], socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/cryptozombieshq', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['847269']", - name: 'CryptoZombies', + team: "['7717', '8521', '7236']", + name: 'Consensus R&D (Ethereum Research)', description: - "CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism.\n\nOur platform is free and used by more than 500,000 developers worldwide. Consequently, we've broadened the Optimism Collective's audience while streamlining developer onboarding. In doing so, we've blended simplicity and humor, making the art of writing smart contracts on Optimism fun and accessible. Furthermore, our Telegram community ensures prompt support from our engineers, aiding both newcomers and experienced developers alike.\n\nWe've teamed up with the Optimism Foundation to build a course, Optimism Unleashed, that teaches students to write, test, and deploy smart contracts on the OP Mainnet and use the Superchain Faucet. The course is available at https://cryptozombies.io/en/optimism.\n\nWe're also building [CryptoZombies Apocalypse](https://apocalypse.cryptozombies.io/), an Optimism-based tower defense game where players fight zombie waves to save humanity. The game includes an educational curriculum providing hands-on experience building blockchain-powered game content.\n\nEarly adopters can now claim Early Bird Badge NFTs for game access. To boost adoption, we're covering minting fees on Optimism.", + 'The Consensus R&D team focuses on both short and long-term research and development projects that aim to improve Ethereum’s security, sustainability, and scalability while retaining strong decentralization. This includes proof-of-stake consensus design, crypto-economic mechanism design, software simulations and experiments, spec writing, security assessments, testing, and more.\n\nHere are some of the projects and research directions that we have been involved with over the period covered by this RPGF round:\n\n- Inclusion lists: in the first half of 2024, an existing inclusion list proposal has been refined together with client teams, culminating in [EIP-7547](https://eips.ethereum.org/EIPS/eip-7547), which was for a time considered for inclusion in Electra. Though that has not transpired, the work on EIP-7547 has still informed our understanding of the inclusion list design space. Eventually, this work has led to further research on more distributed inclusion list mechanisms, such as [FOCIL](https://ethresear.ch/t/fork-choice-enforced-inclusion-lists-focil-a-simple-committee-based-inclusion-list-proposal/19870)\n\n- MaxEB: our team has greatly contributed to the development of the MaxEB proposal, both with [early research and security analysis](https://notes.ethereum.org/nHqON5l7SACkL_nPwz8Vqw) and with spec development. This has led to [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251), which has been included in the Electra fork. The MaxEB spec has meanwhile been incorporated in the [Electra spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/electra).\n\n- PeerDAS: research, spec writing and coordination of the development effort. Starting from last fall, many research posts have been written on the topic, culminating in the [PeerDAS spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/_features/eip7594) as a feature in the Ethereum consensus specifications, and with the corresponding [EIP-7594](https://eips.ethereum.org/EIPS/eip-7594) being considered for inclusion in the next fork. \n\n- Consensus protocol research: much research work has gone into the topic of Single Slot Finality, with papers, [ethresearch posts](https://ethresear.ch/t/orbit-ssf-solo-staking-friendly-validator-set-management-for-ssf/19928), [notes](https://vitalik.eth.limo/general/2024/06/30/epochslot.html) and a [wip high-level spec](https://github.com/fradamt/ssf) being worked on, among other things. \n\n- Staking economics: our team actively participates in research around staking economics and generally the future of staking.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/e18bade7-4f41-4c9a-b531-cc7f55826d3a.png', + 'https://storage.googleapis.com/op-atlas/0c2afd20-d954-478d-aaf5-db96fcb16ff6.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/4abcba4f-797d-4600-bf03-8c4200ff2494.png', + 'https://storage.googleapis.com/op-atlas/8788941d-7915-440e-8570-9e0f9926e374.png', project_socialLinks_website: - "['https://cryptozombies.io/', 'https://apocalypse.cryptozombies.io/']", + "['https://github.com/ethereum/consensus-specs/']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://twitter.com/cryptozombieshq', + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", - impactStatement_statement: - "[{'answer': \"CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism. \\n\\n\\nFurthermore, we've teamed up with the Optimism Foundation to build a new course, Optimism Unleashed, that teaches students to write, test, and deploy smart contracts on the OP Mainnet and use the Superchain Faucet. The course is available at https://cryptozombies.io/en/optimism\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Developer interest has grown this year. Since January, our user base has increased by 23%, reaching 138,000 users.\\n\\n\\nGooge Analytics: https://drive.google.com/file/d/1qOmax2pbKkyVt_ho5RFQD-oT3zWosFWQ/view?usp=share_link', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: 130577.81, - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: 'Rejected', - id: '0x41e9bd84d87b85a4190e4ce47865b14733f12e803cf97c0300d89b75c9bf0c32', - applicationId: - '0x41e9bd84d87b85a4190e4ce47865b14733f12e803cf97c0300d89b75c9bf0c32', - projectId: - '0x52d9a9709aeb50c10afb0f67a35f1a538bc6897c9f45161d39c37fd566fbe19a', - category: 'DeFi', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'Orderly Network', - description: - 'Orderly Network is a combination of an orderbook-based trading infrastructure and a robust liquidity layer offering perpetual futures. Unlike traditional platforms, Orderly doesn’t have a front end; instead, it operates at the core of the ecosystem, providing essential services to projects built on top of it.\n\nBuilt on top of the OP Stack, Orderly Chain settles trades across multiple blockchains leveraging its asset management vaults for user deposits. These asset vaults are currently deployed across Arbitrum, OP Mainnet, Base, Polygon POS and Mantle. \n\nOrderly has 12 brokers built on top of its infrastructure currently - 11/12 of these are deployed to the OP and Base mainnet asset vaults. These brokers/projects include WOOFi Pro, LogX, SharpeAI, Bitoro, EMDX, Ascendex, CoolWallet and more. Orderly has an additional 10+ projects in the "integration underway" stage and/or on testnet to deploy in the coming months. \n\nDetails on Orderly OP Stack can be found on our explorer: \nhttps://explorer.orderly.network/\n\nOrderly overall TVL: $38.5m\nTVL Breakdown in OP & Base - \nOptimism Mainnet TVL: $8,608,017\nBase TVL: $1,348,071\n\nUp to date statistics can be found at: \nhttps://dune.com/orderly_network/orderly-dashboard\n\nTeam Members and Roles: 45+ Team members across 10+ countries.\nCore contributors: Ran (CEO), Terence (CTO), Arjun (COO), Bryan (Product), Slava (Product), Amine (Product), Midoji (BD & Product), Aurora (BD), Henry (Institutional BD), Drew (Marketing), Brandon (Social & Content Marketing), Irene (Growth Marketing)', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/76ccd2c5-0225-4e7f-a2c7-e5541d3b46e4.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/3039461d-66da-43e6-bd08-ec5bc721c37c.png', - project_socialLinks_website: "['orderly.network']", - project_socialLinks_farcaster: "['https://warpcast.com/orderly']", - project_socialLinks_twitter: '@orderlynetwork', - project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Security audits specifically on the OP Stack or its components.']", + "['Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'Orderly is a custom OP Stack chain that acts as a decentralised clearing house alongside a unified orderbook for perpetual trading. An Omnichain settlement layer for DeFi. \\n\\nThe Orderly OP stack as surpassed 21.493M transactions on the chain leverages Celestia for Data Availability. \\n\\nThe Orderly OP stack connects to an off chain matching engine as well as asset management smart contract vaults on multiple other EVM chains, enabling users to be able to deposit and withdraw collateral on the chain of their choice, trade perpetuals on over 20+ different \"brokers\" and/or retail facing front ends whilst settling every trade on the Orderly OP stack every block. In order to do this, the Orderly OP stack is directly integrated with the LayerZero network to enable clear cross chain messaging between chains - This is responsible for approx 25-30% of all messages on LayerZero directly to the Orderly OP Stack. ', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Orderly powers 21+ different perpetual trading interfaces from WOOFi Pro, LogX, Bitoro, Unibot perps, OX Markets to name just a few. All of these perp dexs are able to allow their users to have a real time trading experience, settled via the Orderly OP Stack every single block. Using this, Orderly process anywhere from 100m-1bn in 24hr trading volume across the 21+ builders who have integrated the stack. \\n\\nAn overview of the metrics can be found here:\\nhttps://dune.com/orderly_network/orderly-dashboard\\n\\nOrderly OP Stack Block Explorer here:\\nhttps://explorer.orderly.network/\\n\\nDetails on the Omnichain Settlement Layer:\\nhttps://medium.com/@orderlynetwork/introducing-orderly-app-chain-powering-orderly-omnichain-settlement-layer-170d6c890029\\n\\n', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': 'Our team, and the various research and specification projects it is involved in, are one of the primary drivers of the first part of the Ethereum R&D pipeline. Besides the general dependency of the OP stack on Ethereum, we are also specifically quite involved in DA layer scaling work, which is crucial to allowing OP chains, and all rollups, to become amenable for all kinds of real world applications', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Unless other teams stepped in to fill some of the functions that we currently do, the OP stack would probably have to migrate to a different L1. We believe there is much work still to do on the core L1 protocol, without which Ethereum cannot continue to be the ideal place for rollups to settle.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 44000, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x431cfc98fc6400743da8e926ebd8dbb9aafe32ce2e280e71d8fba7a568f71796', + id: '0xd261ecf2a0de917337ca2256a45c6c898dbfb1bd6f3a1486276cad0055843913', applicationId: - '0x431cfc98fc6400743da8e926ebd8dbb9aafe32ce2e280e71d8fba7a568f71796', + '0xd261ecf2a0de917337ca2256a45c6c898dbfb1bd6f3a1486276cad0055843913', projectId: - '0x80a7a36ae190817283d49b64d9ce3ff729cf93a6f55135442162866c581cfa63', + '0xa17b3d5e5ef47fe50e56d9fea3c4c90e72b0c9127b8eab54058e5ca82111378c', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Punk Shield', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'ethPandaOps', organization_description: - 'Punkshield is an advanced security solution designed to protect your valuable digital assets. It offers a multi-signature (multi-sig) wallet, adding multiple layers of security to safeguard your crypto holdings. Punkshield allows users to enable two-factor authentication (2FA) through Email or Google Authenticator for enhanced protection. The platform also includes a mobile-friendly interface, making it easy to manage your assets on the go.', + 'We are a team of DevOps engineers at the Ethereum Foundation dedicated to coordinating and testing Ethereum protocol upgrades. Our mission is to build reusable tools for the entire ecosystem, with a focus on enhancing the deployment and testing stack of Ethereum. We manage the deployment, maintenance, and testing of upcoming upgrades through devnets, working closely with Ethereum client teams to identify and resolve bugs.\n\nIn addition to testing, we actively collect and monitor data from the Ethereum mainnet and testnets to detect anomalies and gain research insights. This data stack provides valuable insights into the network’s state and lays the groundwork for future, data-driven upgrades.\n\nRecently, we have expanded our efforts to include Layer 2 (L2) support for the automation tools we use on L1. This initiative aims to facilitate easier interoperability and accelerate testing processes.', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/7c370767-c18c-48ae-9032-ce1124d08c04.png', + 'https://storage.googleapis.com/op-atlas/79ddd288-f60d-4985-ae21-dfa433d92472.png', organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/5cd98b48-08ab-4087-a133-c2e4d410a896.png', - socialLinks_website: "['https://punkshield.xyz/']", - socialLinks_farcaster: "['https://warpcast.com/punkshield.eth']", - socialLinks_twitter: 'punkonmint', + 'https://storage.googleapis.com/op-atlas/fbab7e54-5168-4c5f-9a1e-6dd29bfec921.png', + socialLinks_website: "['https://ethpandaops.io']", + socialLinks_farcaster: "['https://warpcast.com/ethpandaops']", + socialLinks_twitter: 'https://x.com/ethPandaOps', socialLinks_mirror: '', - team: "['841741']", - name: 'Punk Shield', + team: "['840195', '212735', '843933', '11652', '840686', '811515', '212493']", + name: 'Ethereum devnets and testing tools', description: - 'Punkshield is an advanced security solution designed to protect your valuable digital assets. It offers a multi-signature (multi-sig) wallet, adding multiple layers of security to safeguard your crypto holdings. Punkshield allows users to enable two-factor authentication (2FA) through Email or Google Authenticator for enhanced protection. The platform also includes a mobile-friendly interface, making it easy to manage your assets on the go.', + 'As a team, we focus on Ethereum testing and protocol upgrades. In order to do this well, We build and maintain many projects that help ship Ethereum upgrades safely and quickly. A full list of our open-source tools can be found on our website at https://ethpandaops.io/projects/.\n\nOne of the major projects the team undertakes is supporting Ethereum hardforks with devnets. Devnets are fully-fledged Ethereum networks that we use for testing new features. We have infrastructure tooling that makes it possible to run a local devnet on your machine. For more intricate tests and networks, we also provide tools to deploy nodes across multiple remote servers. All of these networks come with tools to analyze, test, and debug them. Devnets help Ethereum core developers to make their clients more reliable by identifying issues before they happen on Ethereum mainnet.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/7782a4d3-48ab-4027-b2ac-7685dd744470.png', + 'https://storage.googleapis.com/op-atlas/0be4f6a2-ff4f-4681-a888-8abeb659bfd3.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/31d95f35-43e6-4c07-821b-70221b57e233.png', - project_socialLinks_website: "['https://punkshield.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/punkshield.eth']", - project_socialLinks_twitter: 'https://x.com/Punkonbase', + 'https://storage.googleapis.com/op-atlas/dabbf4f6-1a92-4562-a563-7a5749c055ef.png', + project_socialLinks_website: "['https://ethpandaops.io']", + project_socialLinks_farcaster: "['https://warpcast.com/ethpandaops']", + project_socialLinks_twitter: 'https://x.com/ethpandaops', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + pricingModel: 'free', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Ethereum test networks', 'Infrastructure to test and deploy chains', 'Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': '', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': '', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'The Ethereum devnets and tooling that we build help speed up the delivery of forks on mainnet. These tools were instrumental to testing and analysing Ethereum mainnet helping lead to the chosen blob target and max for the Dencun fork, which subsequently aided the OP-stack by reducing the cost of operations. The analysis tools additionally help us monitor the health of Ethereum, which directly contributes to decisions we make about scaling the L1. ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Since a lot of the tools are used by Core developers to test and ship forks, it would directly impact their ability to do so or increase the amount of friction they need to go through. Core dev friction directly correlates to the stability of the L1 chain as well as ability to ship future forks. These shifts would negatively impact the OP stacks operations. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4178,58 +4079,56 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x43a266d84aa8ce67af3e6afc1bed4021fd7a06693e9eee94e1ef4767b429cc0d', + id: '0xdacaf56aab0be9368356fa9bf036b5e0499ed3b8f4e04f0a826281e2939e7d06', applicationId: - '0x43a266d84aa8ce67af3e6afc1bed4021fd7a06693e9eee94e1ef4767b429cc0d', + '0xdacaf56aab0be9368356fa9bf036b5e0499ed3b8f4e04f0a826281e2939e7d06', projectId: - '0x2c97e213fef2bd3f30a71edf6ed48232640368d0083dc0a134a1b59391639bde', - category: 'Utility', + '0x356eee43066d2e12c46f06eb710b8d33d6655db061cb3b24d7a38433f228a45b', + category: 'NFT', applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Formal Verification @ Ethereum Foundation', - organization_description: - 'Ethereum Foundation team dedicated at developing Formal Verification Tools for Ethereum Smart Contracts', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/5b371001-feaf-4002-8671-c4314150460c.png', + 'PW subcategory': '', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: "['https://fv.ethereum.org']", - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['843949', '844134', '845018', '848682']", - name: 'hevm', + team: '', + name: 'Mysth NFT', description: - 'hevm is an open source, state-of-the art, fast symbolic and concrete EVM execution engine. It has a library interface and can be used as a component in high level tooling. It can be used stand-alone for ad-hoc analysis and symbolic unit test execution.', + 'NFT works based on block Chain with a collection of Myth Canvas', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/d7cf4059-4f9c-48aa-a37a-df2f8c81933c.png', + 'https://storage.googleapis.com/op-atlas/25d67767-622f-4a1b-b62c-4bdadc9e145b.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/020d34f6-e8bb-43b5-8508-7935d2b00583.png', + 'https://storage.googleapis.com/op-atlas/e90d87d2-aac9-46f3-90bf-3708f4e30807.png', project_socialLinks_website: - "['https://hevm.dev/', 'https://github.com/ethereum/hevm/']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + "['https://opensea.io/0x8Df4e551cC464492eF7858256e57A57006D338e5']", + project_socialLinks_farcaster: "['https://warpcast.com/0xethl2']", + project_socialLinks_twitter: 'https://x.com/Hula_ardi', project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': 'The application of formal methods is widely recognized as one of the most effective techniques for ensuring correctness in software development. Symbolic execution is generally considered a best practice within smart contract development, as well as in traditional high assurance domains.\\n\\nhevm is a cutting edge symbolic execution engine for the EVM. Its library interface allows developers to build and experiment with new symbolic analysis tooling. It can be used to analyze programs deployed to any EVM based blockchain.\\n\\nhevm has been under active development since 2017. Since October 2023 we have made the following improvements:\\n\\n- Significant performance optimizations\\n- Improved ux and documentation\\n- A fully symbolic model for addresses\\n- An abstract gas model\\n- Support for the Cancun hardfork (WIP)\\n- Expanded support for testing specific features (\"cheat-codes\")\\n\\nThese improvements make hevm faster, easier to use, and expand the range of programs that can be analyzed.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'OP stack developers would lose access to a powerful and cutting edge symbolic EVM implementation. Development of analysis tooling for the OP stack would become harder. Application developers targeting the OP stack would lose access to tools checking for safety and correctness.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'Keep support lokal pride jangan lupa makan nasi goreng french fries RM Padang Panjang yang telah berpartisipasi mengikuti kuis Kak Joewita kau tak pernah menjadi planet Neptunus memiliki tubuh dan dapat menyebabkan', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'A will be fans artistik shoujo bola jd ha depe instan kondisi uang tunai bekasi barat dan familia Cerambycidae cek ya kak Ega telah ditebang KONTLOTLDN jadi orang yang telah berpartisipasi dalam bahasa', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 'under-1m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x4402a5bf69839aacfc90a3ab33252260ae0fa549634b3f8955ea7e597a6ab942', + id: '0xdad31a9e6fb92128c654b6c86b9d9ef3ec4aaf13b36bb0efc374ed8de0a7b759', applicationId: - '0x4402a5bf69839aacfc90a3ab33252260ae0fa549634b3f8955ea7e597a6ab942', + '0xdad31a9e6fb92128c654b6c86b9d9ef3ec4aaf13b36bb0efc374ed8de0a7b759', projectId: - '0x5bf4cb9356352d8d123d9925d213594088a16a5aacb407030a2b25de728217bd', - category: 'Cross Chain', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + '0x20b1e383963c6d8c3aad208dd5b90b27462a47f9835d567ed44137ade1b5cb45', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -4239,39 +4138,38 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Owlto Finance', + name: 'MetaCRM', description: - '🦉 An intent-centric interoperability protocol, "Bridge the World with AI Agent". \n\nBuild on #BTC | #ETH | #SOL Eco \n\n⚡️ Safe, Fast, Low-priced and Easy-to-use.', + 'MetaCRM provides a suite of innovative software solutions empowering marketing efficiency & personalized customer service for Web3 businesses.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/a7ef0d7f-ce00-4eba-b008-56b9097dbc43.png', + 'https://storage.googleapis.com/op-atlas/f3d4c02b-2511-4026-a886-1b74a7a4c206.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/85835697-4130-4543-9bbe-5cfd09034925.png', - project_socialLinks_website: "['https://owlto.finance']", - project_socialLinks_farcaster: "['https://warpcast.com/owltofinance']", - project_socialLinks_twitter: 'https://x.com/Owlto_Finance', + 'https://storage.googleapis.com/op-atlas/1d6693d9-6b5e-489e-83dc-c4416f78ca93.png', + project_socialLinks_website: "['https://metacrm.inc/#/']", + project_socialLinks_farcaster: "['https://warpcast.com/metacrm']", + project_socialLinks_twitter: 'https://x.com/metacrm_inc', project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + pricingModel: 'freemium', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_subcategory: "['Ethereum client implementations']", impactStatement_statement: - "[{'answer': 'Owlto Finance has developed a smart contract deployment tool: https://owlto.finance/deploy, which allows users to deploy smart contracts and ERC-20 tokens on superchains like Base, Mode, Zora, and Kroma. It only requires a simple one-step operation', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'As of now, users have deployed over 120,000 contracts using this tool, with 82,337 on Base, 6,293 on Kroma, 20,555 on Zora, and 15,628 on Mode. Made a significant contribution to superchains based on the OP Stack\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'MetaCRM offers a suite of innovative software solutions that enhance marketing efficiency and deliver personalized customer service designed for Web3 projects and the Optimism ecosystem. By providing these tailored tools, MetaCRM supports the OP Stack by enabling projects to optimize their user engagement and growth strategies, ultimately contributing to the overall success and scalability of the ecosystem.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If our project were to cease to exist, it would leave a significant gap in the Optimism ecosystem. Currently, there are no comprehensive, all-in-one solutions that are natively built with blockchain compatibility for customer support and user growth. This would be a setback for projects looking to thrive within the Optimism ecosystem.\\n\\nMoreover, two of the core goals of the Optimism Foundation are to ensure that end-users have an excellent user experience and that projects have access to the necessary tools to succeed. Our project directly addresses these objectives by providing valuable solutions, so our absence would create a substantial challenge for the entire Optimism ecosystem.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 55495.2, + grant_1_amount: '1m-5m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x48636b24079a7a3d2694f0d5d4f80e0828a68fecc8e36cca4e47618bd6073b1c', + id: '0xdbbddc9ceafb415395bc0d139c894428ddd3b53a94f459868d1ffcd86a8a0637', applicationId: - '0x48636b24079a7a3d2694f0d5d4f80e0828a68fecc8e36cca4e47618bd6073b1c', + '0xdbbddc9ceafb415395bc0d139c894428ddd3b53a94f459868d1ffcd86a8a0637', projectId: - '0x0242f727cd5dc0878cfc297be8046e3527563cc12f28021ea1eeb6611d86eb0e', - category: 'Social', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + '0x1335476de5a24573f3fa1297827fbeb02921948d678b399c7367fb956d08a6cc', + category: 'NFT', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -4281,26 +4179,24 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Crypto4Bunnies🐰🥕', + name: 'Opstack For Cats Dream ☑️', description: - 'Italian web3 community in which to popularize blockchain and its potential with the best projects to accelerate mass adoption and educate users on the transition from web2 to web3\nOur services include articles, live streaming on twitch, threads and giveaways on social, Youtube channel for video content, reels on tik tok, podcasts. We also have Italian communities on discord, a telegram channel and a channel on warpcast', + 'I am a builder who deals with the production of nft in all L2s. I create my NFTs with artificial intelligence. I think my imaginary collection of cats is worthy of receiving an award on optimism.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/3a0567f1-275b-46e2-b94e-040cc35dd014.png', + 'https://storage.googleapis.com/op-atlas/aaff6a85-cd3e-4066-8f03-f09359b3a900.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/c26eec87-530c-406c-8fb9-130c13ee40f0.png', + 'https://storage.googleapis.com/op-atlas/318a51e5-edfa-4564-8937-8508d3041a72.png', project_socialLinks_website: - "['https://x.com/crypto4bunnies', 'https://www.youtube.com/@crypto4bunnies', 't.me/RadioHolder', 'https://www.instagram.com/crypto4bunnies/', 'https://www.tiktok.com/@panofsky']", - project_socialLinks_farcaster: - "['https://warpcast.com/panofsky', 'https://warpcast.com/~/channel/base-it']", - project_socialLinks_twitter: 'https://x.com/panofsky167', - project_socialLinks_mirror: - 'https://mirror.xyz/0xd386E9bDC4095BED8333aF3F0d48F6dBc4cB0Cab', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + "['https://element.market/collections/opstack-for-cats-dream']", + project_socialLinks_farcaster: "['@zeus199803']", + project_socialLinks_twitter: 'https://twitter.com/CiyiltepeE32442', + project_socialLinks_mirror: '', + pricingModel: 'pay_to_use', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Security audits specifically on the OP Stack or its components.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Services for deploying and hosting an OP Chain.', 'Languages which are dedicated to developing smart contracts']", impactStatement_statement: - "[{'answer': 'with our channels through both video and written tutorial articles we help newbies understand the mechanisms of superchains and guide them step by step helping them if they have problems thanks to our assitance on our community', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'we have concretely helped dozens of people who were incapable of it to use blockchain technology at airdrop by assisting them and explaining the main features also stayed to follow other projects having the minimum skills to follow the dynamics of the web world3', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'My project name directly includes Opstack. This is a project that advertises you in your weak NFT market. First of all, instead of dealing with coding etc., increase your TPS rate by activating your NFT market. At this rate, you will be a ghostchain, not a superchain.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Your NFT market will be completely finished and you will turn into a nonsensical network with no color. As we try to be with you with our projects, you are giving grants to many projects that do not need them and that already receive grants. I wonder if you are making yourself rich under the name of grant distribution. I will investigate this.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4309,41 +4205,40 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x525940d18c0128bd891b8f8e343d93609cb191b4d582f92edc174bc65a754406', + id: '0xde58eb0c8a9a29596b86be117d3f289e43aad908796d64e1da00712e769bf82e', applicationId: - '0x525940d18c0128bd891b8f8e343d93609cb191b4d582f92edc174bc65a754406', + '0xde58eb0c8a9a29596b86be117d3f289e43aad908796d64e1da00712e769bf82e', projectId: - '0x3f8baf6d4f2cbe2d02f471274f32ad259a446e84dd82c600f034d36f84a2a3d3', - category: 'NFT', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + '0x3060f55f50773c14b116537afebf8fa9f934664d022084f644f387e3d8e507bb', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'Tokenomics', + organization_description: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/4b6f5412-22cb-4e2d-8030-f1e7d1ccaad1.png', + organizationCoverImageUrl: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: 'PANTONE PLANET', - description: - 'Pantone Planet, is an NFT series from the universe, with different colors and has its own uniqueness', + team: "['373516']", + name: 'Tokenomics Mechanism Research', + description: 'Research and Develop new tokenomics models', profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/9090e73a-29c0-4526-aa48-502931e587db/32fb3d1a-2380-489f-af46-05281394491c/simon-lee-eGALMCJ_Cvk-unsplash.jpg', + 'https://storage.googleapis.com/op-atlas/fa9260a3-49ff-4ea4-aba5-efb946b96d24.png', projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/9090e73a-29c0-4526-aa48-502931e587db/eef933e3-67a1-4f67-9fb1-f83b721d928b/WhatsApp-Image-2024-06-20-at-01.15.39_89df9811.jpg', - project_socialLinks_website: - "['https://opensea.io/collection/pantone-planet-1']", - project_socialLinks_farcaster: "['https://warpcast.com/zoopdrop.eth']", - project_socialLinks_twitter: 'sakbaniiiii', + 'https://storage.googleapis.com/op-atlas/a5b446ae-c554-431f-8d24-d9d873d030e3.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Research which informs Ethereum core development', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Services for deploying and hosting an OP Chain.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'To facilitate the testing, deployment, and operation of OP (Optimistic Rollup) chains, I’d focus on the following aspects of infrastructure:\\n\\nDevelopment Environment:\\n - Simulators and Testnets: Infrastructure includes tools and environments like Kovan or Optimism’s own testnets, where developers can test their contracts and interactions without risking real assets. Simulators mimic the behavior of the mainnet, allowing for thorough testing.\\n - Development Frameworks: Tools like Hardhat or Truffle are configured to support OP chains, enabling developers to deploy and interact with smart contracts in a local or test environment.\\n\\n\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"Although I don't have direct experience with specific tooling or users, I can share how various types of tooling for OP chains are generally used and benefited by different stakeholders based on industry practices:\", 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'Increasing effectiveness and efficiency of token distribution algorithms. Producing research relevant to retro PGF distribution algorithms, reputation, and incentivizing contributors to participate more frequently in the development of OP Stack.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"The OP Stack will continue to develop and thrive. Other tokenomics experts will continue to produce more mechanisms and research that improve the OP Stack tokenomics and incentives. The research I've published so far may influence future research.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4352,127 +4247,137 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x5276d4d412a177b622203b0692ebd9be3cce24eb412ec5a50f025345ba4f4159', + id: '0xe2ad55d517e5ae80f9a1c009a1368d661e7b4c951c2976090679307c29800c12', applicationId: - '0x5276d4d412a177b622203b0692ebd9be3cce24eb412ec5a50f025345ba4f4159', + '0xe2ad55d517e5ae80f9a1c009a1368d661e7b4c951c2976090679307c29800c12', projectId: - '0x55bff36906b3e55bff995b4a7d73fd6651eeba4274ad49e269b29157bbf2fee2', - category: 'NFT', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + '0x966804cb492e1a4bde5d781a676a44a23d69aa5dd2562fa7a4f95bb606021c8b', + category: 'Utility', + applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + 'PW subcategory': '', + organization_name: 'libp2p', + organization_description: + "libp2p is an open source networking library used by the world's most important distributed systems such as Ethereum, IPFS, Filecoin, Optimism and countless others. There are native implementations in Go, Rust, Javascript, C++, Nim, Java/Kotlin, Python, .Net, Swift and Zig. It is the simplest solution for global scale peer-to-peer networking and includes support for pub-sub message passing, distributed hash tables, NAT hole punching and browser-to-browser direct communication.", + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/39689f3b-3e4c-48a2-ab37-f57b85998e69.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/e8ef83e2-0eb0-48a2-b931-2221e8ae5ed9.png', + socialLinks_website: + "['https://libp2p.io', 'https://github.com/libp2p/libp2p']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/libp2p', socialLinks_mirror: '', - team: '', - name: '8 Bit Cats☑️', + team: "['827799', '845866']", + name: 'libp2p Ecosystem', description: - '8-bit cats are NFTs produced with artificial intelligence. It is a successful nft collection that has reached 420 network interactions on the base network with its unique designs.', + 'A modular and extensible networking stack which solves many challenges of peer-to-peer applications. libp2p is widely deployed in many notable web3 projects such as Ethereum, Optimism, Filecoin, Polkadot, Celestia, and more. This a general application for the libp2p Core Fund, a vehicle which funds the libp2p ecosystem (implementations, development infrastructure, community outreach & events, etc.) both proactively and retroactively.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/a6bd06ef-a0bd-4aa1-be8e-00a211a6015b.png', + 'https://storage.googleapis.com/op-atlas/dcee4e9a-3de0-4868-ad76-5d8d31467342.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/436760bb-94e6-4220-9102-b65ff5005758.png', + 'https://storage.googleapis.com/op-atlas/509d70f7-242e-4812-ba2e-00805cae971e.png', project_socialLinks_website: - "['https://element.market/collections/8-bit-cats-d4614f4b1']", - project_socialLinks_farcaster: "['@zeus199803']", - project_socialLinks_twitter: 'https://twitter.com/CiyiltepeE32442', + "['https://libp2p.io', 'https://github.com/libp2p/libp2p']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/libp2p', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Ethereum client implementations', 'Research which informs Ethereum core development']", impactStatement_statement: - "[{'answer': 'It was a very good welcome, I am happy with opstack, OPTIMISIM IS KING. We only had problems with block speeds in the infrastructure, the rest was pretty good. A slightly faster block technology update is a must for you.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'It was a very good welcome, I am happy with opstack, OPTIMISIM IS KING. We only had problems with block speeds in the infrastructure, the rest was pretty good. A slightly faster block technology update is a must for you.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'libp2p is a critical part of the Beacon Chain which powers Ethereum and is a core dependency of OP mainnet & OP stack. libp2p offers Ethereum and Optimism a modular, extensible, peer to peer networking stack across multiple programming languages.\\nThe ecosystems project serves as a coordination space between the various libp2p implementers e.g. the libp2p specs repo where optimizations to GossipSub (used in both Ethereum and Optimism) are made in the pubic, and other protocols (transports, multiplexers, etc.)\\nThis project enables ecosystem functions like retroPGF programs, CI/CD infrastructure for impls and interop, Github hosting, Discourse forums, hosting websites, Social media presence, as well as in-person libp2p Community events and the responsible disclosure security process. The ecosystem also coordinates across impls & community members. The libp2p Project is a key part of the OP and Ethereum stacks and ensures the security and resiliency of the distributed blockchain networks.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'The libp2p networking library is a critical piece of L1, L2, and many other related applications in the OP and Ethereum ecosystem. If the libp2p project ceased to exist, there would be no central organization coordinating the critical functions of maintaining and deploying the libp2p software. Furthermore, if libp2p ceased to exist, Ethereum, Optimism, and other chains would have to rely on bespoke networking stacks. libp2p offers re-usable, cross implementation, modular peer to peer networking in an application agonistic way, and without it, p2p networking would have to rely on custom solutions that may not be as widely deployed in production across multiple major decentralized networks.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 298137.85, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x5886472cf166ffa3671aa8c9bc303f8644e1ad90d67a53aec0f97eb6c9e6844d', + id: '0x1547a722f7731b439b97428c31925100ef49ae443e32f5bba766268c296a3379', applicationId: - '0x5886472cf166ffa3671aa8c9bc303f8644e1ad90d67a53aec0f97eb6c9e6844d', + '0x1547a722f7731b439b97428c31925100ef49ae443e32f5bba766268c296a3379', projectId: - '0x20c5765632f669a3d5167f95cc7963d7bbf060b68e4621d0c9091b7f7e1b26ab', - category: 'DeFi', + '0xa9860e1ba61461740831e00d03eb22660e47e8e9087b2ea2e4441f21210fb786', + category: 'Social', applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: 'Zotto', - organization_description: '', + organization_name: 'Be Part Of Art Collective', + organization_description: + "The Be Part Of Art Collective has one goal. Build and maintain the first infinite art canvas. A neverending art canvas that connects people through art. Imagine it as a giant puzzle that hadn't been designed yet. It starts with one piece and keep growing by adding new art by different artists. On this canvas it's not only about the artist's art but also about how he can merge his/her art with the art that already exists on the canvas.", organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/273c1263-c85e-4308-baf7-bff2f041e4b7.png', - organizationCoverImageUrl: '', - socialLinks_website: [], + 'https://storage.googleapis.com/op-atlas/dbddfc21-a8c4-42b9-b7cc-f29707c04ef9.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/bfb32a2a-dd80-44e6-b9f5-219700b8ee29.png', + socialLinks_website: "['Bepartofart.com']", socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['849758']", - name: 'Zotto', + team: "['413209']", + name: 'Be Part Of Art', description: - 'Zotto is an automated perpDEX and memecoin aggregator to snipe and sell tokens at lightning speed. The platform allows each trader to tailor its custom strategies for auto-buy/sell based on predefined conditions set by onchain intents. These smart agents are fully customizable, multi-condition, asynchronous, cross-chain, and non-custodial.', + "In a time where the world is divided, I feel it is time to build projects that connect. In a time where everyone is focusing on themselves, I feel it is time to build projects that focus on collaboration. \n\nBe Part Of Art is a one of a kind art project. It is a blank infinite art canvas that invites graphic artists from around the world to contribute and collaborate with each other to create something that has never been done before. An artwork that is never finished, an artwork that is always growing into something bigger. An artwork that evolves as time goes by. \n\nI imagine it as a digital \"cave painting\"... A place where you can see art, the artists and life merge into something that will be forever available to mankind.\n\nDo you have what it takes to Be Part Of Art? \n\nIn this first stage of the project I'd like to do a bit more research about the technical requirements and technical feasibility of the project. Find the initial group of artists to create the first piece and spend time planning the next phases. \n\nI'd like to spend some time brainstorming with different artists to see how they feel about the project and if they would want to collaborate. Since this all takes time I'd like to request an initial capital to cover the costs so I can focus on this project and the research full-time.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/7a7824ce-cdff-4ca2-a917-fbce0d3d5e47.png', + 'https://storage.googleapis.com/op-atlas/53ee4bea-4882-4f2c-8f71-2b6d747a28b2.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/00ca0aac-7555-48af-aa37-015b68ac777d.png', - project_socialLinks_website: "['https://zotto.ai/']", + 'https://storage.googleapis.com/op-atlas/8fd63b00-4bcd-447a-9e9b-7bfd805f3242.png', + project_socialLinks_website: "['Www.Bepartofart.com']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/zottoAI', + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'freemium', impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': \"Zotto has created a automation engine live on Base, designed to be leveraged by any OP Stack chain and developer. Our first use case focuses on automating perpetual, spot, and DeFi trading on Base through the Zotto app. \\n\\nWe're also developing APIs and SDKs to enable integration of our engine across the broader ecosystem, automating a wide range of tasks. We're already in discussions with RaaS providers to natively integrate automation into various rollups. This not only strengthens the OP Stack ecosystem but opens up new opportunities for developers to make automation a core feature of their on-chain activities.\\n\\n\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"The biggest beneficiaries of our work on the OP Stack have been developers and DeFi projects that require automation for their on-chain activities. For example, we've helped Orderly with the first fully automated perp trading. Our advancements are increasing user activity as it no longer requires manual intervention to initiate trades and create volume on-chain.\\n\\nWe are integrating the engine with various DEX and DeFi protocols to offer a new way to interact with their platform.\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': \"There hasn't been any impact yet because I have only recently decided to start working on this project again. With the initial funding I will make sure do the research needed to decide if this project has any marit and what the best way will be moving forward.\\n\\n\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"1. Digital Artists \\n2. Consumers that love art\\n3. The OP Stack \\n\\nFor digital artists it's a new way to showcase their work and skills. It will not be easy to claim a spot on the canvas, it will require winning multiple voting rounds and convincing the community you are the right fit for that spot. But once you do, your work will be there forever. \\n\\nFor people that love art, it will be a new way to interact with it. Not only being able to decide how the canvas should move forward by voting, they'll also be able to buy their favorite pieces of the canvas to gift to their friends or family or keep for themselves.\\n\\nThe OP stack will have a new innovative way to display it's strength, this time not rooted in DeFi. I feel a lot of people are not yet comfortable with blockchain and/or DeFi and because of that they aren't using the OP stack yet. With this project the OP stack will be able to show how a blockchain can be used to keep track of ownership of the first infinite art canvas. \\n\\n\\n\\n\\n\\n\\n\\n\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 'under-1m', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x5ae4c1508b793a092c32c06000735c31f36b35759f655b8644174ff2cbd7903c', + id: '0x3142a5d468f9c6cd587619a0fccf73dc77835149f1ca31e579cb51501dcfd285', applicationId: - '0x5ae4c1508b793a092c32c06000735c31f36b35759f655b8644174ff2cbd7903c', + '0x3142a5d468f9c6cd587619a0fccf73dc77835149f1ca31e579cb51501dcfd285', projectId: - '0x679e661b67e85d937baace0bc56a6274dddfdffd8cce0e7232af86620d8d2ba4', - category: 'DeFi', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: 'Blockchef', - organization_description: '', + '0xf04c2c47624bc0191001f655e147986439541493ee06e5ec5b8576d26d26d057', + category: 'Social', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Rentality', + organization_description: + 'Rentality is an innovative project aimed at tokenizing real assets – cars. We transformed the car rental business process from web2 to web3', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/d0a1c9f9-1f0e-4e20-83f2-e2e4c55cc42a.png', - organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['842471']", - name: 'Blockchef | Blockchain; From Farm to Fork', - description: - 'The modern food supply chain is a complex web of interactions involving farmers, processors, distributors, retailers, and consumers.\n\nThis complexity often leads to inefficiencies, fraud, and a lack of transparency. Traditional supply chains are vulnerable to numerous issues, such as counterfeit products, where unscrupulous entities introduce fake or substandard items into the supply chain. This undermines consumer trust and compromises safety.\n\nBlockChef addresses the challenges in the area by utilizing blockchain technology to create an immutable, transparent, and secure ledger of every transaction and interaction in the food supply chain.', + 'https://storage.googleapis.com/op-atlas/500276b5-67df-434d-a96b-56b00ebbb81c.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/c6d3c01f-ba67-4f71-ab5e-2eea8e6759ee.png', + socialLinks_website: + "['https://app.rentality.xyz/', 'https://rentality.xyz/']", + socialLinks_farcaster: "['https://warpcast.com/rentality']", + socialLinks_twitter: 'https://x.com/Rentality_Info', + socialLinks_mirror: + 'https://mirror.xyz/0x263660F0ab0014e956d42f85DccD918bBa2Df587', + team: "['631453']", + name: 'Rentality', + description: 'Transforming the future of car rentals with blockchain', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/85d305c3-f250-4e81-b2eb-d228b5058020.png', + 'https://storage.googleapis.com/op-atlas/c6b7ce00-ff3c-4bbb-90a1-6cce594896e3.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/972a1713-f830-4ae1-a1b1-cea0d72a3e61.png', - project_socialLinks_website: "['https://blockchef.io']", - project_socialLinks_farcaster: "['https://warpcast.com/blockchef']", - project_socialLinks_twitter: 'https://x.com/blockchefio', - project_socialLinks_mirror: '', + 'https://storage.googleapis.com/op-atlas/ef7d6609-1026-4387-b1f4-9ca108fc4c1b.png', + project_socialLinks_website: "['https://app.rentality.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/rentality']", + project_socialLinks_twitter: 'https://x.com/Rentality_Info', + project_socialLinks_mirror: + 'https://mirror.xyz/0x263660F0ab0014e956d42f85DccD918bBa2Df587', pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", + "['Work on core components of the OP Stack, including client implementations, modules, and modifications.']", impactStatement_statement: - "[{'answer': \"BlockChef aims to revolutionize the food supply chain by providing businesses with a transparent and efficient solution to track products from **farm to fork**. To achieve this, we are building a robust infrastructure powered by an OP Stack-based sequencer and network. This infrastructure will serve as the foundation for creating an immutable ledger that records every step of a product's journey.\\n\\nBy leveraging existing tools and blockchain technology, we will enable businesses to deploy and operate a chain that provides full traceability, security, and transparency. Our network will streamline processes, automate verification through smart contracts, and reduce inefficiencies, all while enhancing the user experience. This ensures businesses can easily track, verify, and authenticate their products, giving them and their customers complete peace of mind.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We are currently in the testing phase of our product and actively engaging in discussions with various suppliers, producers, and stakeholders within the food supply chain across Europe. Our goal is to attract potential customers by demonstrating the value of our solution. The power of the OP Stack and Superchain allows us to offer our clients a fully transparent, trustworthy, and easily traceable process. This ensures that every step in the supply chain is secure and verifiable.\\n\\nWhile we do not yet have public testimonials or data from active users, these ongoing negotiations are helping us build a strong list of potential clients who are interested in adopting our solution in the near future.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'We believe that our project can make a significant contribution to the OP blockchain ecosystem. We estimate that in 3 months after MVP we will have around 1,500 active users of the service and over 16,000 transactions per month. We will attract more than 80,000 customers who will make more than 2,000,000 transactions every month by the end of 2027, we plan to grow by 40% per month. \\nWe plan to actively engage the community to increase the TVL of our platform and blockchain in the next release. Our strategy involves raising a minimum of 5 million from the community. These funds will be directed to the mass purchase of cars. We believe that group investment is a more affordable and efficient way to get a car. For example, one person cannot always afford to buy a car for 100,000, but a thousand people united by our service can easily collect the required amount.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'The web3 community lacks quality services, which are usual for web2. Rentality is a project from the direction of RWA (Real World Assets), which offers car rental and tokenization services. Our experience allows us to build a new trend in web3 - the transformation of RWS (Real Word Services) services, which will later become a benchmark for the entire web3 direction. The entire web3 community gets access to the convenient services they are usually using web2, thereby bringing web3 closer to mass adoption. We eliminate intermediaries between the guest and the host, creating a fair price for the community.\\nExample\\nWhen booking a car on web2, both the guest and the host pay for the services and commissions of various intermediaries, from Google and financial institutions to Turo, which operates with an inefficient monopoly structure. These commissions significantly affect the price of the product. ', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4481,254 +4386,173 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x5d6b6bef33973adeaada0804d3fd860fad1c97ca612e6e96d38251cbf659cecc', + id: '0x3d99c996bf2979b7ff827a4b2b2c56c65580bc75854ac41b30f034465801f301', applicationId: - '0x5d6b6bef33973adeaada0804d3fd860fad1c97ca612e6e96d38251cbf659cecc', + '0x3d99c996bf2979b7ff827a4b2b2c56c65580bc75854ac41b30f034465801f301', projectId: - '0x43bb3210691d0a7fd15df10a5401020281f7ab57baa49a63225c5c262abc357d', - category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', + '0x5606763865e540ae9ff0c58f206a708f58ea117c08d8d8d1e74f768abeff084c', + category: 'Cross Chain', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Moved Network', + organization_description: + "Moved is a high-performance optimistic rollup solution built on the Optimism OP Stack, utilizing the Move smart contract language, designed to unlock Ethereum's full potential. By leveraging the power of optimistic rollups and the efficiency of Move, Moved enables fast, secure, and cost-effective transactions on the Ethereum network.", + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/88bd6479-8ded-472a-9c59-3a40d414ddae.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + socialLinks_website: "['https://moved.network']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/MovedNetwork', socialLinks_mirror: '', - team: '', - name: 'JEFE TOKEN', + team: "['831955']", + name: 'Moved Network', description: - "JEFETOKEN is a software development project focused on smart contracts, blockchain technology, video games & mobile applications. Our goal is to create an ecosystem of web3 applications, based on our own token that powers our platforms and services. Additionally, we offer education through interactive workshops, both in-person and digital, to facilitate user integration into the blockchain ecosystem.\nBlockchain: The JEFE token is developed Open source under the MIT license, coded in Solidity and forms the foundation of the project, deployed on the mainnet in Optimism as $JEFE with the vision of being part of the SUPERCHAIN.\n\nApplication Development: We implement web3 activities within the community, promoting healthy competition through participation in educational workshops and learning activities on blockchain usage. All information is accessible to users from our website and with direct support on our social media channels. We have our own video game, Jefe Zombie, available on Android and iOS. This game introduces users to using their ERC-20 address to rank within the community and earn on-chain rewards, such as $JEFE & NFTs, and off-chain rewards, such as game appearances & accessories.\n\nCommunity Support: We also support community talent in areas like sports (American football and paintball), audiovisual art, helping artists transition to the web3 world, and e-sports, promoting competition and game streaming among users.\n\nJEFE University: We have JEFE University, a tour of presentations and workshops at universities about Optimism, blockchain & web3. We generate POAPs (Proof of Attendance Protocol) for attendees, promoting learning and knowledge sharing.\n\nRewards Program: We incentivize talent and user engagement within our ecosystem through a comprehensive rewards program, prominently featured on our website. Additionally, we're currently developing JEFE COMPASS, an innovative mobile Dapp where users can seamlessly monitor the global community ranking, organize activities, and track both on-chain and off-chain interactions from community addresses and VOTE for events, competitions, top players and more. By participating, users earn rewards points, enabling them to evolve their progress and level of their ranking within the community. \nThis program recurrently lists community activities that integrate web3, providing an access point to understand the use case of JEFE TOKEN. We act as a compass for navigating the web3 world, with a vision of a Superchain. Our utility is to support the transition from web2 to its integration with the Superchain in web3 interactively.", + "We're building the next generation Ethereum L2 blockchain on Optimism OP Stack that supports the most secure Move smart contract language. Our goal is to help the security and parallel execution of Move meet Ethereum’s vast liquidity.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/b9e15e7a-8d23-4b25-83ab-88fc333c417f.png', + 'https://storage.googleapis.com/op-atlas/4088a7f3-ba0f-4ec6-a6bc-ff4caaf666eb.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/a5f679ab-f06a-401f-a73c-d93f27a2f9ee.png', - project_socialLinks_website: - "['https://jefetoken.com', 'https://rewards.jefetoken.com']", - project_socialLinks_farcaster: "['https://warpcast.com/jefetoken']", - project_socialLinks_twitter: 'https://x.com/JefeTOKEN', + 'https://storage.googleapis.com/op-atlas/68088c9d-248f-4b4c-b8b7-1e8c52c5569a.png', + project_socialLinks_website: "['https://moved.network']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/MovedNetwork', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + pricingModel: 'pay_to_use', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", + "['Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'Integrating an educative progress & development of a blockchain with the Op Stack brought challenges & improvements this new way to have impact in the use case of the Superchain with the tool developed kosotl (link on github repo) served as a quick reference for new users to deploy configure & test an op chain used in workshops in person & online expanding the use of the open source code at a collage level in our local community at a university teaching students & collaborating w/ professors for the development of a university blockchain experimenting a simplified route of what a decentralized system is & how to deploy, network & storage test with Optimism OPstack Open Source. This shared knowledge w/ the community simplified building the Superchain for free engaging w/updated studies groups that use these tools as art of their formation & with the bilingual research & development follow a constant documentation of the whole & how to overcome critical aspects of building an op chain', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'The approach was directly with the university Instituto Technologico Superior de San Luis Potosi in Mexico, professors, students & graduated, from the careers of technology & software engineers from different collage degrees learned the implementation of the layer 2 solutions of the open source op stack in workshops studying & in practice in creating a testnet blockchain the ability to configure it in simplified steps from the theory & in practice\\n\\nhttps://www.facebook.com/share/p/tZ6u1CoMo2CjUzhQ/\\n\\nhttps://www.facebook.com/alejandrocesar.ricomartinez/posts/pfbid02PhcgsnRqUAcbjTYty3TrgiQaHR1tEBveLnUwh94gpwFfAdBXHSkcfPCD5yTauTprl?rdid=VtwbRUyaP5uvnv99\\n\\nThis series of workshops motivated the public university directors to step forward in building & connect w/ the op blockchain for their academics & processes integrating it in their academic formation on students. Professors build, maintenance & update improvements of the Superchain blockchain built everybody all together\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': \"Moved Network provides smart contracts for alternative VMs to be executed on the OP Stack and Superchain in the future. Almost all the smart contracts on OP Stack runs on EVM and we start providing access to Move smart contract execution.\\n\\nWe also started working on a zkMove implementation that will be used for ZK proof. As it turns out, it's easier to port ZK computation on a Move contract than a Solidity contract, because the Move bytecodes are a lot more similar to assembly language than the EVM bytecodes which makes them easier to transform into ZK computation language.\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'We believe bringing in Move smart contracts will make OP Stack a lot more secure, because Solidity has vulnerabilities which are solved in Move language.\\n\\nAnother benefit is with ZK proof the withdrawal times will be a lot shorter, currently in a few minutes and in the future in one block time when the underlying ZK computation speeds up. But still a few minutes is much better than 7 days.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 12422, + grant_1_amount: 'under-1m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x6272a864b7793e1a0ac1b8a2767366f56e8234cb969a7e9f3f21cd70d374a357', + id: '0x41e9bd84d87b85a4190e4ce47865b14733f12e803cf97c0300d89b75c9bf0c32', applicationId: - '0x6272a864b7793e1a0ac1b8a2767366f56e8234cb969a7e9f3f21cd70d374a357', + '0x41e9bd84d87b85a4190e4ce47865b14733f12e803cf97c0300d89b75c9bf0c32', projectId: - '0x7c2460f0e048edd08abb4279db8fc5318168145672399cb37c9f19c9381d5273', - category: 'Utility', + '0x52d9a9709aeb50c10afb0f67a35f1a538bc6897c9f45161d39c37fd566fbe19a', + category: 'DeFi', applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: 'EthStorage', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: '', organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/aff6e73e-f3f5-49e7-8c25-707738dd526a.png', - organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['245756', '498701', '438493']", - name: 'Dynamic Inbox Contract For OP Stack', - description: - 'This feature aims to allow the batch inbox to be a contract, enabling customized batch submission conditions such as:\n\nRequiring the batch transaction to be signed by a quorum of sequencers in a decentralized sequencing network; or\nMandating that the batch transaction call a BLOB storage contract (e.g., EthStorage) with a long-term storage fee, which is then distributed to data nodes that prove BLOB storage over time.', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/fa88a614-4de4-4ae0-9363-0b819540724c.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/6560734b-a095-4659-94ea-0e6dfa8373f6.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", - impactStatement_statement: - "[{'answer': 'This feature aims to allow the batch inbox to be a contract, enabling customized batch submission conditions such as:\\n\\n1. Enable a decentralized sequencing network (such as Based rollup), which requires the batch transaction to be signed by a quorum of sequencers; or\\n2. Mandate that the batch transaction call a BLOB storage contract (e.g., EthStorage) with a long-term storage fee, which is then distributed to data nodes that prove BLOB storage over time.\\n\\nFor the specific advancements, we have proposed a spec here:\\n\\nhttps://github.com/ethereum-optimism/specs/pull/284\\n\\nwhich receives positive feedback from Mark Tynes.\\n\\nIn addition, we have completed a reference implementation:\\n\\n1. [example inbox contract for EthStorage](https://github.com/blockchaindevsh/es-op-batchinbox/blob/main/src/BatchInbox.sol)\\n2. [op-node & op-batcher changes](https://github.com/blockchaindevsh/optimism/compare/5137f3b74c6ebcac4f0f5a118b0f4909df03aec6...02e3b7248f1b590a2adf1f81488829760fa2ba03)', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Quarkchain L2 has deployed a OP Stack testnet using the genesis inbox contract feature to permanently store BLOBs on EthStorage Network: https://github.com/ethstorage/pm/blob/main/L2/testnet_usage.md\\n\\nAnd after discussing with Mark, we think it can be more valuable to make it possible for existing OP Stack instances to also migrate to inbox contract, thus \"Dynamic Inbox Contract\". The next step is to add the feature to the official OP Stack upgrade in the future.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", - grant_1: 'token-house-mission', - grant_1_link: 'https://app.charmverse.io/op-grants/page-36156815313550994', - grant_1_amount: 30000, - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: 'Rejected', - id: '0x6ad164877605c91d3182bcc0ba977f39c95fa48449884c001e85ab65a70355ef', - applicationId: - '0x6ad164877605c91d3182bcc0ba977f39c95fa48449884c001e85ab65a70355ef', - projectId: - '0xd8012752e512ed8c6a47e61293bbad8cd942c9d016de1dc78d64d2248373444a', - category: 'NFT', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', + organizationAvatarUrl: '', organizationCoverImageUrl: '', socialLinks_website: '', socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'NFT Starter', + name: 'Orderly Network', description: - 'NFT STARTER is a platform designed to help creators, artists, and entrepreneurs launch their own NFT projects. It acts as a launchpad, providing the tools and resources to create and mint NFTs. Currently working on version 2.0', + 'Orderly Network is a combination of an orderbook-based trading infrastructure and a robust liquidity layer offering perpetual futures. Unlike traditional platforms, Orderly doesn’t have a front end; instead, it operates at the core of the ecosystem, providing essential services to projects built on top of it.\n\nBuilt on top of the OP Stack, Orderly Chain settles trades across multiple blockchains leveraging its asset management vaults for user deposits. These asset vaults are currently deployed across Arbitrum, OP Mainnet, Base, Polygon POS and Mantle. \n\nOrderly has 12 brokers built on top of its infrastructure currently - 11/12 of these are deployed to the OP and Base mainnet asset vaults. These brokers/projects include WOOFi Pro, LogX, SharpeAI, Bitoro, EMDX, Ascendex, CoolWallet and more. Orderly has an additional 10+ projects in the "integration underway" stage and/or on testnet to deploy in the coming months. \n\nDetails on Orderly OP Stack can be found on our explorer: \nhttps://explorer.orderly.network/\n\nOrderly overall TVL: $38.5m\nTVL Breakdown in OP & Base - \nOptimism Mainnet TVL: $8,608,017\nBase TVL: $1,348,071\n\nUp to date statistics can be found at: \nhttps://dune.com/orderly_network/orderly-dashboard\n\nTeam Members and Roles: 45+ Team members across 10+ countries.\nCore contributors: Ran (CEO), Terence (CTO), Arjun (COO), Bryan (Product), Slava (Product), Amine (Product), Midoji (BD & Product), Aurora (BD), Henry (Institutional BD), Drew (Marketing), Brandon (Social & Content Marketing), Irene (Growth Marketing)', profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/d30a1da7-8e25-495b-9961-f332bcfc43a1/44113f51-1a0b-40cb-b5b1-f4cb5241d913/GDUQ_lQU_400x400.jpg', + 'https://storage.googleapis.com/op-atlas/76ccd2c5-0225-4e7f-a2c7-e5541d3b46e4.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/0f8ad22d-b07f-422a-a341-5c2d9df1e570.png', - project_socialLinks_website: "['https://nftstarter.lol/']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'Nftstarter', + 'https://storage.googleapis.com/op-atlas/3039461d-66da-43e6-bd08-ec5bc721c37c.png', + project_socialLinks_website: "['orderly.network']", + project_socialLinks_farcaster: "['https://warpcast.com/orderly']", + project_socialLinks_twitter: '@orderlynetwork', project_socialLinks_mirror: '', pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Security audits specifically on the OP Stack or its components.']", impactStatement_statement: - "[{'answer': 'The NFT Launchpad is designed to simplify the process for artists to launch their NFT projects and make it easy for their supporters to mint these NFTs. By focusing on Layer 2 networks, the platform significantly reduces costs and enhances scalability, making NFT creation and distribution more accessible and efficient for a broader audience.\\n\\nImpact Statement: Our Launchpad democratizes access to the NFT space by reducing barriers for creators and collectors, enabling a more inclusive and thriving digital art ecosystem on Layer 2 networks.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'During 2023-24, several NFT collections were successfully launched on our platform. \\nThese collections were deployed across various chains, often coinciding with the launch of those chains’ mainnets. By doing so, we provided users with an opportunity to familiarize themselves with new networks and ecosystems from the outset, making our platform a key resource for early adopters and NFT enthusiasts alike.\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'Orderly is a custom OP Stack chain that acts as a decentralised clearing house alongside a unified orderbook for perpetual trading. An Omnichain settlement layer for DeFi. \\n\\nThe Orderly OP stack as surpassed 21.493M transactions on the chain leverages Celestia for Data Availability. \\n\\nThe Orderly OP stack connects to an off chain matching engine as well as asset management smart contract vaults on multiple other EVM chains, enabling users to be able to deposit and withdraw collateral on the chain of their choice, trade perpetuals on over 20+ different \"brokers\" and/or retail facing front ends whilst settling every trade on the Orderly OP stack every block. In order to do this, the Orderly OP stack is directly integrated with the LayerZero network to enable clear cross chain messaging between chains - This is responsible for approx 25-30% of all messages on LayerZero directly to the Orderly OP Stack. ', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Orderly powers 21+ different perpetual trading interfaces from WOOFi Pro, LogX, Bitoro, Unibot perps, OX Markets to name just a few. All of these perp dexs are able to allow their users to have a real time trading experience, settled via the Orderly OP Stack every single block. Using this, Orderly process anywhere from 100m-1bn in 24hr trading volume across the 21+ builders who have integrated the stack. \\n\\nAn overview of the metrics can be found here:\\nhttps://dune.com/orderly_network/orderly-dashboard\\n\\nOrderly OP Stack Block Explorer here:\\nhttps://explorer.orderly.network/\\n\\nDetails on the Omnichain Settlement Layer:\\nhttps://medium.com/@orderlynetwork/introducing-orderly-app-chain-powering-orderly-omnichain-settlement-layer-170d6c890029\\n\\n', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 44000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x6ad58623b17b1e11053007d266b59849c7d850ca4f34946bccf6f4db1e652c85', + id: '0x5886472cf166ffa3671aa8c9bc303f8644e1ad90d67a53aec0f97eb6c9e6844d', applicationId: - '0x6ad58623b17b1e11053007d266b59849c7d850ca4f34946bccf6f4db1e652c85', + '0x5886472cf166ffa3671aa8c9bc303f8644e1ad90d67a53aec0f97eb6c9e6844d', projectId: - '0x85bef37b528ec9d7e1a9cb864e298e3c117071507acd3f522c28561435d167f5', + '0x20c5765632f669a3d5167f95cc7963d7bbf060b68e4621d0c9091b7f7e1b26ab', category: 'DeFi', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Zotto', organization_description: '', - organizationAvatarUrl: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/273c1263-c85e-4308-baf7-bff2f041e4b7.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: 'rhinofi', + team: "['849758']", + name: 'Zotto', description: - 'rhino.fi is the ultimate Layer 2 bridge for effortlessmulti-chain token movement', + 'Zotto is an automated perpDEX and memecoin aggregator to snipe and sell tokens at lightning speed. The platform allows each trader to tailor its custom strategies for auto-buy/sell based on predefined conditions set by onchain intents. These smart agents are fully customizable, multi-condition, asynchronous, cross-chain, and non-custodial.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ddd580ed-71e8-4a88-be3b-32d302c4821c.png', + 'https://storage.googleapis.com/op-atlas/7a7824ce-cdff-4ca2-a917-fbce0d3d5e47.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/719357a2-dff4-43d7-a508-cbf7999186d1.png', - project_socialLinks_website: "['rhino.fi', 'https://app.rhino.fi/']", + 'https://storage.googleapis.com/op-atlas/00ca0aac-7555-48af-aa37-015b68ac777d.png', + project_socialLinks_website: "['https://zotto.ai/']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/rhinofi', - project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Infrastructure to test and deploy chains']", - impactStatement_statement: - "[{'answer': 'As a layer2 bridge rhinofi plays a crucial role in fostering interoperability within the blockchain ecosystem, and especially for the OP Stack ecosystem. \\n\\nBy facilitating cross-chain transactions across 27+ Active EVM and non-EVM chains, and therefore providing a route for users to transition from non-OP Stack chains to OP Stack chains, rhinofi significantly lowers the barrier to entry for users interested in discovering the unique opportunities within the OP Stack ecosystem. This improved user experience not only benefits individual users but also contributes to the overall growth and adoption of OP Stack-based platforms.\\n\\nTo date, rhinofi has achieved the following in regards to the OP Stack ecosystem:\\n\\n- 7 chains supported - OP Mainnet, Base, Mode, Blast, Zircuit, Mantle, opBNB\\n- Total bridged volume on OP Stack chains - $810mio+\\n- Total TX on OP Stack chains - 1,7mio+\\n- Total User bridged from/to OP Stack chains - 1,3mio+\\n- OP Stack campaign - https://rhino.fi/rhino-summer/', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Over the years, rhinofi has positioned itself as a trusted bridge that users often choose as their primary option due to its excellent user interface and overall experience. The absence of rhinofi would not only diminish the potential for new liquidity to flow in from non-OP Stack chains but also reduce the fluidity and ease of movement of liquidity across the OP Stack chain.\\n\\nMoreover, a reduction in available bridging routes to the OP Stack - following a hypothetical decommissioning of rhinofi - would lead to an increased reliance on a smaller number of bridge partners, potentially concentrating risks among fewer actors. Such a scenario could make the ecosystem more vulnerable to disruptions and limit the diversity of options for users seeking to interact with OP Stack chains.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: 38223, - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: 'Rejected', - id: '0x77e86299f288162bccb5e09788c6df4e63f960e4711e10259ea5e6cb9b3ae3e1', - applicationId: - '0x77e86299f288162bccb5e09788c6df4e63f960e4711e10259ea5e6cb9b3ae3e1', - projectId: - '0x6664074da8453628ebad1cf90ca0a6a313febf2e4909d3aba0c0360f41204c73', - category: 'NFT', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'MATUBMA', - description: - 'I just registered for the SUNNY Awards to be eligible for 540K OP!', - profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/9100e3fe-1f1e-47cd-a424-e67c1ac6d523/50f6c156-3fd6-4220-80d5-045ef1658f8d/wazowski-mike.gif', - projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/9100e3fe-1f1e-47cd-a424-e67c1ac6d523/84aaead4-8b2c-4cc2-8f4e-9ea1d4579984/6181.jpg', - project_socialLinks_website: "['https://zora.co/@compile']", - project_socialLinks_farcaster: "['https://warpcast.com/matubma']", - project_socialLinks_twitter: 'https://x.com/extremelyluxury', + project_socialLinks_twitter: 'https://x.com/zottoAI', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + impactStatement_subcategory: + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'I introduced people to the capabilities of the NFT marketplace Zora, now its development is going further and I also continue to work, for example, the weekly update with the listing of NFT on the Uniswap dex was warmly received by people', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Many people don’t even understand what cryptocurrency is and how to work with it, I help in this regard, I’m sure that if guys like me disappear, it will set the development of cryptocurrency technology back several years', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': \"Zotto has created a automation engine live on Base, designed to be leveraged by any OP Stack chain and developer. Our first use case focuses on automating perpetual, spot, and DeFi trading on Base through the Zotto app. \\n\\nWe're also developing APIs and SDKs to enable integration of our engine across the broader ecosystem, automating a wide range of tasks. We're already in discussions with RaaS providers to natively integrate automation into various rollups. This not only strengthens the OP Stack ecosystem but opens up new opportunities for developers to make automation a core feature of their on-chain activities.\\n\\n\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"The biggest beneficiaries of our work on the OP Stack have been developers and DeFi projects that require automation for their on-chain activities. For example, we've helped Orderly with the first fully automated perp trading. Our advancements are increasing user activity as it no longer requires manual intervention to initiate trades and create volume on-chain.\\n\\nWe are integrating the engine with various DEX and DeFi protocols to offer a new way to interact with their platform.\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 'under-1m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x78986f716f24bdb7fcf0118096f80d83e8bed1970f8c9800f4543addefb00044', + id: '0x6272a864b7793e1a0ac1b8a2767366f56e8234cb969a7e9f3f21cd70d374a357', applicationId: - '0x78986f716f24bdb7fcf0118096f80d83e8bed1970f8c9800f4543addefb00044', + '0x6272a864b7793e1a0ac1b8a2767366f56e8234cb969a7e9f3f21cd70d374a357', projectId: - '0x985a1ed485458d7c383c8b59a18856183197783883014c74b865468769436c52', - category: 'Governance', - applicationCategory: 'OP_STACK_TOOLING', + '0x7c2460f0e048edd08abb4279db8fc5318168145672399cb37c9f19c9381d5273', + category: 'Utility', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: 'Optimism Unlimited', + organization_name: 'EthStorage', organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/bcfee716-1862-4879-8d86-de2215840a82.png', + 'https://storage.googleapis.com/op-atlas/aff6e73e-f3f5-49e7-8c25-707738dd526a.png', organizationCoverImageUrl: '', socialLinks_website: [], socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['5779', '844381']", - name: 'Retro Funding Site Design', + team: "['245756', '498701', '438493']", + name: 'Dynamic Inbox Contract For OP Stack', description: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', + 'This feature aims to allow the batch inbox to be a contract, enabling customized batch submission conditions such as:\n\nRequiring the batch transaction to be signed by a quorum of sequencers in a decentralized sequencing network; or\nMandating that the batch transaction call a BLOB storage contract (e.g., EthStorage) with a long-term storage fee, which is then distributed to data nodes that prove BLOB storage over time.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/729b2f2b-25ac-4668-a715-61b0471e025a.png', + 'https://storage.googleapis.com/op-atlas/fa88a614-4de4-4ae0-9363-0b819540724c.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/dfec054e-366f-4db0-8603-372f715d012f.png', + 'https://storage.googleapis.com/op-atlas/6560734b-a095-4659-94ea-0e6dfa8373f6.png', project_socialLinks_website: [], project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', + "[{'answer': 'This feature aims to allow the batch inbox to be a contract, enabling customized batch submission conditions such as:\\n\\n1. Enable a decentralized sequencing network (such as Based rollup), which requires the batch transaction to be signed by a quorum of sequencers; or\\n2. Mandate that the batch transaction call a BLOB storage contract (e.g., EthStorage) with a long-term storage fee, which is then distributed to data nodes that prove BLOB storage over time.\\n\\nFor the specific advancements, we have proposed a spec here:\\n\\nhttps://github.com/ethereum-optimism/specs/pull/284\\n\\nwhich receives positive feedback from Mark Tynes.\\n\\nIn addition, we have completed a reference implementation:\\n\\n1. [example inbox contract for EthStorage](https://github.com/blockchaindevsh/es-op-batchinbox/blob/main/src/BatchInbox.sol)\\n2. [op-node & op-batcher changes](https://github.com/blockchaindevsh/optimism/compare/5137f3b74c6ebcac4f0f5a118b0f4909df03aec6...02e3b7248f1b590a2adf1f81488829760fa2ba03)', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Quarkchain L2 has deployed a OP Stack testnet using the genesis inbox contract feature to permanently store BLOBs on EthStorage Network: https://github.com/ethstorage/pm/blob/main/L2/testnet_usage.md\\n\\nAnd after discussing with Mark, we think it can be more valuable to make it possible for existing OP Stack instances to also migrate to inbox contract, thus \"Dynamic Inbox Contract\". The next step is to add the feature to the official OP Stack upgrade in the future.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + grant_1: 'token-house-mission', + grant_1_link: 'https://app.charmverse.io/op-grants/page-36156815313550994', + grant_1_amount: 30000, 'Column 1': '', 'Column 33': '', }, @@ -4782,145 +4606,141 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x7a43c1fa89ef5c1230765dd34d7d27c29f9ccf3c9853d8523bb5afda7af05d48', + id: '0x8f96355ae6573c6c606e2f5a71155344cc42afc853adc4f84933dc7cd00b2e9f', applicationId: - '0x7a43c1fa89ef5c1230765dd34d7d27c29f9ccf3c9853d8523bb5afda7af05d48', + '0x8f96355ae6573c6c606e2f5a71155344cc42afc853adc4f84933dc7cd00b2e9f', projectId: - '0xbe557cceb3d7b0d8827a4e62066c9ea53eb1f2da775437aa5c78c193735e872e', + '0xd2c2e6a44a7e28aaa9e3f324ac6f0bd963501250af6be842ea8e036b60fc1e08', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: 'Syndicate', - organization_description: - 'Syndicate helps companies build high-performance communities on-chain through our products such as Transaction Cloud, our work with L3s, and the Metabased initiative.', + organization_name: '', + organization_description: '', organizationAvatarUrl: '', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/2eeefee4-8cfd-49e6-b452-fbd951d355a4.png', - socialLinks_website: "['syndicate.io']", - socialLinks_farcaster: "['https://warpcast.com/syndicate']", - socialLinks_twitter: 'https://x.com/syndicateio', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['2987']", - name: 'Mirror', + team: '', + name: 'OP Stack Chains: Economics, Adoption and Activity Overview Dune Dashboards and Research', description: - 'Syndicate helps companies build high-performance communities on-chain through our products such as Transaction Cloud, our work with L3s, and the Metabased initiative. Mirror is our project that allows you to listen to offchain events or poll offchain resources & mirror that data to other chains.', + 'sealaunch is onchain intel team dedicated in-depth onchain and Dune research for chains, protocols and dApps building on Ethereum, namely on the OP Stack. This project offers a comprehensive view of OP rollups that range from economic metrics benchmark, onchain activity cross-chain but also OP rollup specific and features that highlight the diversity of the OP Stack. Currently on the Top #10 Wizards on Dune.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/f7fc289b-8ff6-4e14-82af-992103f6cd3f.png', + 'https://storage.googleapis.com/op-atlas/01d213eb-35fa-4485-9844-c38a816b0f67.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/cec5a3ac-03d9-4336-bc2e-28f41d10046c.png', - project_socialLinks_website: "['https://syndicate.io']", - project_socialLinks_farcaster: "['https://warpcast.com/syndicate']", - project_socialLinks_twitter: 'https://x.com/syndicateio', + 'https://storage.googleapis.com/op-atlas/76b97430-0103-4219-8003-018f11f1814f.png', + project_socialLinks_website: "['https://sealaunch.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/sealaunch']", + project_socialLinks_twitter: 'https://x.com/sealaunch_', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_TOOLING', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': \"Syndicate's Transaction Cloud, SmartRPC and L3 tooling have boosted the surface area of the OP-stack by allowing high-performance L3s and app chains to be built on the Superchain, for specific use cases. We are constantly helping our partner companies, and the ecosystem at large, explore use cases that merge the security and stability of L2s with the customizability offered by L3s.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We have fully deployed [HAM Chain](https://medium.com/@hamlabs/announcing-ham-chain-5597a1082769), [Degen Chain](https://syndicate.io/blog/degen-chain), the [Frame API on Warpcast](https://frame.syndicate.io) and worked with partners such as Nike on their [.SWOOSH initiative](https://twitter.com/syndicateio/status/1592280354089365505?s=61).', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'Our dashboards have helped Optimism, Base, Zora and Mode teams have onchain data resources and dashboards that help understand and highlight not only what is happening on their rollup specifically, but also on the OP stack as a whole. The cross-chain data research helps shows the diversity and success of these chains. Our data shows a thriving OP stack that helps attracts new builders looking to develop on a stack with verifiable adoption and activity.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Directly, it served dev and leadership teams of Base, Zora and Mode to use onchain data to prove a track record and showcase adoption. As well, as a granular understanding of activity on their L2s when comparing with other EVM L2s and other OP rollups. Additionally for Zora Creators specifically, our research on a Zora feature like its protocol rewards and as a direct result of our action of contacting creators with unclaimed rewards, benefited [companies and individual creators to claim their forgotten funds](https://x.com/sealaunch_/status/1802817823829368971) and a resource that is still available for any Zora account to check.\\nIndirectly, all this onchain data resources can benefit builders that want to identify underserved users or verticals on a dynamic ecosytem like the OP Stack.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 'under-1m', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x7ffef9193c8275ba48b509796eb678d7cfecc4851d54ceae1cc3d688f35658ad', + id: '0x9932b50339f36c2327df7eac42965014d561c7401e6fdf50550727ad228f56f2', applicationId: - '0x7ffef9193c8275ba48b509796eb678d7cfecc4851d54ceae1cc3d688f35658ad', + '0x9932b50339f36c2327df7eac42965014d561c7401e6fdf50550727ad228f56f2', projectId: - '0x4d926f7d302cbb95fe37487892a49b0b6240601e3a84023f8a1518678d6e6dbe', + '0x66cce776ce6eaa99192120fc25b91ecc7b98e03210a08f0d3bfda82f542d3e1a', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: 'DappLearning', - organization_description: - "We are designed for developers to step into blockchain DAPP development, where they can learn DeFi, CRYPTO, NFT, DAO projects. We are only focus on Ethereum and Layer2. \n\nour vision:\n\nWe hope we could not only give junior developers a feasible and easy-to-use **blockchain Dapp learning roadmap**, but also present advanced developers with a platform for **communication and cooperation**.\n\nWhat We Have Done\n\n- We maintain a widely acclaimed open-source web3 development tutorial on GitHub, covering the fundamentals of web3 development, in-depth analysis of DeFi, CRYPTO, DAO,blockchain architecture and more. The Basic tasks enable beginners to get the hang of web3 basics through coding examples, while the Project task section delves in to the architecture and processes of classic projects and dissects the key logic within the code。\n- Adhering to the concept of the open-source university, we regularly hold online tech-sharing sessions (typically once a week), with over 180 deep dives into hard-core technical topics. They're all up on platforms like YouTube and Bilibili for people to catch up on. For critical technologies or topics, we have organized several lecture series, such as DeFi series, ZK Series Courses, Optimism, Starknet, Scroll, UniswapV3, Account Abstraction, etc. Excellent presenters would receive a 160 DAI reward provided by the community funding pool.\n- We have a special team to translate influential English courses or articles into Chinese, making them accessible to a broader range of Chinese developers. To help learners understand the entire web3 industry's context and improve systemic cognition, we have organized the content of MIT 15.S12 Blockchain and Money (Prof. Gary Gensler) video course and translated it into Chinese version course notes.\n- We've built a community system using Ethereum Address as an identity marker, offering platforms for hiring and bounties alongside practical web3 tools like Redpacket and Airdrop, etc., on which we support layer2 (Optimism, Arbitrum one, scroll, zkSync Era, etc). We're continuously enhancing our community features with the goal of providing an enriched experience for our developers. We aim to foster learning, facilitate collaboration, and unlock new opportunities within the community.\n- We adhere to a DAO governance, decentralized, with global contributors, voting on significant community .", - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/9502c952-cc56-455a-9497-0b7d763421f4.png', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: "['https://dapplearning.org/']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/Dapp_learning', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['516941', '617880', '517069']", - name: '[DappLearning] Web3 Development Tutorial', + team: '', + name: 'OP ENS Gateway by Opti.Domains', description: - 'DappLearning is the definitive guide to decentralized application (Dapp) development on blockchain technology. It offers step-by-step practical experience through classic projects. The GitHub repository has garnered over 5K stars. The OP Stack is a crucial component of this guide, and we have meticulously designed relevant experiments, as well as compiled a rich list of reference materials for those who wish to learn. Additionally, we organized two online OP Stack sharing sessions and uploaded the related videos to YouTube, which have received nearly 1K views. \nOur tutorial not only assists Mandarin-speaking developers in Mainland China but also extends its reach to support developers in regions such as Hong Kong, Singapore, Malaysia, and beyond.\n\nOP stack tutorial (docs + video course): \nhttps://github.com/Dapp-Learning-DAO/Dapp-Learning/blob/main/basic/28-optimism-layer2/README.md\nhttps://www.youtube.com/playlist?list=PLgPVMJY4tnFNXwnStKiI9FZ9cV-OqgZMT', + "Opti.Domains has developed an ENS Gateway implementation for OP Stack chains that supports various proofs, including those from L2OutputOracle, Dispute Game, and Anchor State. The appropriate proof is automatically selected based on the configuration of the OP Stack chain.\n\nThe Opti.Domains ENS Gateway automatically upgrades in response to the OP Stack's transition from L2OutputOracle to Dispute Game, requiring no manual intervention or updates to the verifier contract or gateway server.\n\nThe ENS Gateway, specifically the EVMGateway, enables trustless cross-chain data retrieval for ENS names deployed on Layer 2 networks like Optimism with a CCIP Gateway. When an ENS name lookup occurs, the resolver reverts with OffchainLookup containing the gateway URL. The client then contacts the gateway, which returns the requested data. This data is passed to a callback function on the resolver for verification before being returned to the client as the final result of the name lookup.\n\nOur ENS Gateway has a mechanism to ensure liveliness even in the event that the respected dispute game type has suddenly changed, as seen in the recent proposal, 'Upgrade Proposal #10: Granite Network Upgrade,' by storing a backup dispute game type and only trusting its anchor state.\n\nOpti.Domains has also developed social verification and attestation to EAS in collaboration with Bored Town. We are on our way to scaling ENS to OP. We have contributed to the ENS OP Gateway development, which is currently under review by ENS core developers.\n\nThe Namespace team has expressed interest and reached out to us with questions about using our OP ENS Gateway. Additionally, several teams have participated in discussions regarding the development of our OP ENS Gateway.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/8edaf178-239d-4396-85f0-15b9a13eff91.png', + 'https://storage.googleapis.com/op-atlas/8f6ad6e0-029a-4f59-b1d2-c7885248b99a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/23f1881a-a148-4a96-b974-97e0a4016d0b.png', - project_socialLinks_website: "['https://dapplearning.org/']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/Dapp_learning', + 'https://storage.googleapis.com/op-atlas/135853fe-2393-4a0a-a959-044ff973fcf0.png', + project_socialLinks_website: "['https://opti.domains']", + project_socialLinks_farcaster: "['https://warpcast.com/optidomains.eth']", + project_socialLinks_twitter: 'https://x.com/optidomains', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'DappLearning is the definitive guide to decentralized application (Dapp) development on blockchain technology. It offers step-by-step practical experience through classic projects. The GitHub repository has garnered over 5K stars. The OP Stack is a crucial component of this guide, and we have meticulously designed relevant experiments, as well as compiled a rich list of reference materials for those who wish to learn. Additionally, we organized two online OP Stack sharing sessions and uploaded the related videos to YouTube, which have received nearly 1K views. \\nOur tutorial not only assists Mandarin-speaking developers in Mainland China but also extends its reach to support developers in regions such as Hong Kong, Singapore, Malaysia, and beyond.\\n\\nOP stack tutorial (docs + video course): \\nhttps://github.com/Dapp-Learning-DAO/Dapp-Learning/blob/main/basic/28-optimism-layer2/README.md\\nhttps://www.youtube.com/playlist?list=PLgPVMJY4tnFNXwnStKiI9FZ9cV-OqgZMT\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our development tutorials have reached thousands of developers, with the OP Stack-related tutorials being particularly popular. To date, our GitHub repository has garnered over 5K stars, and our YouTube channel has surpassed 5K subscribers, making it highly influential in the Asia-Pacific region.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': \"Opti.Domains has developed an ENS Gateway implementation for OP Stack chains that supports various proofs, including those from L2OutputOracle, Dispute Game, and Anchor State. The appropriate proof is automatically selected based on the configuration of the OP Stack chain.\\n\\nThe Opti.Domains ENS Gateway automatically upgrades in response to the OP Stack's transition from L2OutputOracle to Dispute Game, requiring no manual intervention or updates to the verifier contract or gateway server.\\n\\nOur ENS Gateway has a mechanism to ensure liveliness even in the event that the respected dispute game type has suddenly changed, as seen in the recent proposal, 'Upgrade Proposal #10: Granite Network Upgrade,' by storing a backup dispute game type and only trusting its anchor state.\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': '- Teams building an ENS identity and infrastructure on OP Stack chains do not need to reimplement the gateway and verifier while having a fully verifiable and decentralized way to launch their identity with ENS subdomains or similar solutions.\\n- ENS Labs benefit from not having to spend man-days researching and developing the EVM Gateway on OP Stack chains.\\n- The Namespace team has expressed interest and reached out to us with questions about using our OP ENS Gateway. Additionally, several teams have participated in discussions regarding the development of our OP ENS Gateway.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 21600, + grant_1_amount: 22117, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x8b28b3226a7135786daed49dd67aac6c97a29c768ea0337c54bbcfb4d9388a07', + id: '0x9b70e4a6f08471455d1d674f4e430da7b4fd43848002b47d1b6e1c1a1e0a36db', applicationId: - '0x8b28b3226a7135786daed49dd67aac6c97a29c768ea0337c54bbcfb4d9388a07', + '0x9b70e4a6f08471455d1d674f4e430da7b4fd43848002b47d1b6e1c1a1e0a36db', projectId: - '0xebc40a8bfaf3b8103e2b5da3a8c89b97daf6bd8b2096b847ef686dd3245ae960', - category: 'Social', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', + '0x52d53d44856f5a356053e55e3ad339d7207486b0210fe48aa2c1a0ec79c55d9c', + category: 'CeFi', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: "Louie's Kingdom", + organization_description: 'The dream team', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/c31efc70-9663-443c-a3ed-501ba694b1e6.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: 'Based Italia', - description: - 'Based Italia is the Italian side community of Base through which, with my colleagues, we try to onboard in a nation that has a low crypto adoption rate.\nIn recent months we have engaged artists and influencers, published articles and shared experiences with the Base Global Community.\nThe project was born as part of Crypto4bunnies, a 360-degree crypto dissemination project.', + team: "['4289', '191212']", + name: 'Test Project', + description: 'This new', profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/9a446931-d305-407c-891e-5df7065eb99b/67e582d9-957a-41ab-acf9-0fff07434971/ItalyNFT.png', + 'https://storage.googleapis.com/op-atlas/9f096f4a-099d-44e6-bbe8-262f3af73ee0.png', projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/9a446931-d305-407c-891e-5df7065eb99b/8b8b8a60-ea49-4b8f-9c8e-16ea4f4f07d5/onboardsolo_5.gif', - project_socialLinks_website: - "['https://paragraph.xyz/@baseitalia/community/Base%20Italia', 'https://paragraph.xyz/@crypto4bunnies', 'https://medium.com/@fr.dinardo', 'https://x.com/basedita']", - project_socialLinks_farcaster: "['https://warpcast.com/~/channel/base-it']", - project_socialLinks_twitter: 'ifiwasfrank', + 'https://storage.googleapis.com/op-atlas/decabfe9-ebc2-4e01-89ff-1028dab807ca.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Research which informs Ethereum core development']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'Based Italia can support OP stack with its specific outreach and onboarding of new users. Since we are not devs, our goal is to make onchain access easy for all users who would like to approach this world but, due to technical difficulties, fail. ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'By losing Based Italia, OP Stack would lose an important territorial community. Although we have only recently started, we are well established in the Based environment and already have a decent community. Without us, a fresh start would have to be made. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', + "[{'answer': 'ddd projectprojectprojectprojectproject\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good projectMy project is good project', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'My project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project i', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + grant_1: 'token-house-mission', + grant_1_link: + 'https://retrofunding.optimism.io/projects/0xb8ea29378df33c1bcb64c221a1e2e342a99d3fad8233dcec94eddd137a3eab05/grants', + grant_1_amount: 10000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x8c91a04b486ae88eee274a3a447c199598ee33c2e79bf97d353a1335d694bf54', + id: '0xa36ae760edb91ba8bfcc2b52b664fb4731ec09b78033b1bbec9d83d167d590e8', applicationId: - '0x8c91a04b486ae88eee274a3a447c199598ee33c2e79bf97d353a1335d694bf54', + '0xa36ae760edb91ba8bfcc2b52b664fb4731ec09b78033b1bbec9d83d167d590e8', projectId: - '0x6d30328dd0e058bdd4c55c51d5f785268770040a66edbd2830902c4d87efee9c', + '0x9b6e73ac9e887b808c56aba853cfadad39df635d11bd5a9d6697f2e2658f4b5c', category: 'Utility', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -4930,23 +4750,22 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Clear Wallet', - description: - 'Clear EVM wallet is a fully open-source EVM browser wallet based on Ethers, Ionic, Manifest V3, and Vue. It implements Metamask API and will work as a replacement for Metamask, websites will detect it as Metamask, so select Metamask when interacting with Dapps. Websites that implement EIP-6963 will detect it as Clear EVM Wallet.\n\nIt has been public on Chrome Store since August 2022.', + name: 'OP Stack Individual contributions', + description: 'Web 3 enthusiast and indie developer.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/4aa97110-63e2-4703-a3f5-e42bdebceaee.png', + 'https://storage.googleapis.com/op-atlas/872bb13b-ee5e-41fc-baab-2c35063af98e.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/50e95639-885c-4657-8141-4a3357fd732e.png', - project_socialLinks_website: "['https://clear-wallet.flashsoft.eu/']", - project_socialLinks_farcaster: "['andrei0x309', 'clearwallet']", - project_socialLinks_twitter: 'andrei0x309', - project_socialLinks_mirror: 'https://mirror.xyz/andrei0x309.eth', + 'https://storage.googleapis.com/op-atlas/69471b4a-baca-4669-8bc8-dd3e040a94f5.png', + project_socialLinks_website: "['https://github.com/kelreel']", + project_socialLinks_farcaster: "['https://warpcast.com/kelreel']", + project_socialLinks_twitter: 'https://x.com/0x_kir', + project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Services for deploying and hosting an OP Chain.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", impactStatement_statement: - "[{'answer': 'Is very developer friendly has advanced features for devs like direct writing and reading from contracts, very rapid switching between accounts, is open-source, super private no analytics no trackers, has OP stack in template network both OP chain and Base chain.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': '- Chrome users that have downloaded tested and used the extension. ( current active users 200, a few thousand over the years)\\n- Users that have used code from the GitHub repository.\\n- Users that have built and used extensions from source ( unknown number)\\n- Farcaster users that have used it to SIWF on desktop and log in on warpcast.com\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'My contributions to the codebase:\\n- improved template app design & layouts (op-scaffold, ecosystem/app)\\n- fixed wallet connection errors, interactions with rpc (wagmi) in some places (op-scaffold, ecosystem/app)\\n- small fixes related to the superchain console (ecosystem)\\n- improved env and documentation\\n\\nDetails are in the project links.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'New and current app developers on the OP stack will be able to scaffold new applications faster, with a better initial code base and past bugs fixed. Updated documentation details will help resolve issues more quickly when creating new applications.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4955,14 +4774,14 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x8f96355ae6573c6c606e2f5a71155344cc42afc853adc4f84933dc7cd00b2e9f', + id: '0xa61bcee8283f00abfca8890d602ea9542a75c925f43e05d85cb4e017c60f8017', applicationId: - '0x8f96355ae6573c6c606e2f5a71155344cc42afc853adc4f84933dc7cd00b2e9f', + '0xa61bcee8283f00abfca8890d602ea9542a75c925f43e05d85cb4e017c60f8017', projectId: - '0xd2c2e6a44a7e28aaa9e3f324ac6f0bd963501250af6be842ea8e036b60fc1e08', + '0x353abbe13c196db288730b62e7a6d8f2755ee968681a67bc7d5e381621ad211a', category: 'Utility', applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -4972,23 +4791,22 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'OP Stack Chains: Economics, Adoption and Activity Overview Dune Dashboards and Research', - description: - 'sealaunch is onchain intel team dedicated in-depth onchain and Dune research for chains, protocols and dApps building on Ethereum, namely on the OP Stack. This project offers a comprehensive view of OP rollups that range from economic metrics benchmark, onchain activity cross-chain but also OP rollup specific and features that highlight the diversity of the OP Stack. Currently on the Top #10 Wizards on Dune.', + name: 'xuwinnie.review', + description: 'Security Researcher.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/01d213eb-35fa-4485-9844-c38a816b0f67.png', + 'https://storage.googleapis.com/op-atlas/23976744-db3b-49b9-b5d4-3b629a28dd3a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/76b97430-0103-4219-8003-018f11f1814f.png', - project_socialLinks_website: "['https://sealaunch.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/sealaunch']", - project_socialLinks_twitter: 'https://x.com/sealaunch_', + 'https://storage.googleapis.com/op-atlas/f7905adc-4525-4ea2-bc64-925690c7069c.png', + project_socialLinks_website: "['xuwinnie.review']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/xuwinniexu', project_socialLinks_mirror: '', - pricingModel: 'free', + pricingModel: 'freemium', impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + "['Security audits specifically on the OP Stack or its components.']", impactStatement_statement: - "[{'answer': 'Our dashboards have helped Optimism, Base, Zora and Mode teams have onchain data resources and dashboards that help understand and highlight not only what is happening on their rollup specifically, but also on the OP stack as a whole. The cross-chain data research helps shows the diversity and success of these chains. Our data shows a thriving OP stack that helps attracts new builders looking to develop on a stack with verifiable adoption and activity.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Directly, it served dev and leadership teams of Base, Zora and Mode to use onchain data to prove a track record and showcase adoption. As well, as a granular understanding of activity on their L2s when comparing with other EVM L2s and other OP rollups. Additionally for Zora Creators specifically, our research on a Zora feature like its protocol rewards and as a direct result of our action of contacting creators with unclaimed rewards, benefited [companies and individual creators to claim their forgotten funds](https://x.com/sealaunch_/status/1802817823829368971) and a resource that is still available for any Zora account to check.\\nIndirectly, all this onchain data resources can benefit builders that want to identify underserved users or verticals on a dynamic ecosytem like the OP Stack.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': '- Performed a security audit on the OP Stack Fault Proof implementation through Code4rena.\\n- Identified *C4 H-01: Invalid DISPUTED_L2_BLOCK_NUMBER is passed to VM.* This bug enables an attacker to counter a valid output claim by providing a trace containing one block after the original claim.\\n- One of the two High Severity issues to be fixed in the upcoming [Granite Network Upgrade](https://gov.optimism.io/t/upgrade-proposal-10-granite-network-upgrade/8733), and the only directly exploitable one.\\n- The first and the only reasercher to identify this issue during a series of third-party security audits.\\n', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Protocols & Users on OP Stack, Fault Proof Game participants. \\n- If this bug remains unfixed, valid state transition could be disputed, and chain-level liveness issue could occur.\\n- Malicious actor can steal the bond from honest dispute game participants.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -4997,85 +4815,84 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x969f411e6dc247aab187d46953a9823e0d9efcc82e12065494c05f34316b7515', + id: '0xde61c4ad48fd0a8e1e783490aeab9e2d8aa05aaeba1c619e3d520f7e277e461e', applicationId: - '0x969f411e6dc247aab187d46953a9823e0d9efcc82e12065494c05f34316b7515', + '0xde61c4ad48fd0a8e1e783490aeab9e2d8aa05aaeba1c619e3d520f7e277e461e', projectId: - '0x88f63d18a020e4aefd6093b5234cc5e11e085698bcc7652b370d38939c39097f', + '0x853976b3804833ac5e65592a308ee871f6f38038d25bc6f4dac4a63892c09c5f', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '🏰 BuidlGuidl', - organization_description: - 'BuidlGuidl is a curated group of builders creating open source tools and educational content.\n\nThe main focus is developer growth and mentoring. We build tools and educational content to teach the next wave of builders how/what they can build on Ethereum / EVMs.\n\n- **Tooling**: We built and actively maintain [🏗 Scaffold-ETH-2](https://scaffoldeth.io/), an open-source toolkit which allows for rapid prototyping and full scale dApp development on Ethereum. \nWe have also lots of handy tools (OSS) created with SE-2 by our community, like [Abi.Ninja](https://abi.ninja/), [Hacked Wallet Recovery,](https://hackedwalletrecovery.com/) [address.vision](http://address.vision) and others.\n\n- **Education**: We provide a free curriculum at 🏃‍♀️ SpeedRunEthereum.com. A hands on, guided series of challenges to learn how to code and deploy smart contracts all while receiving the assistance of our community. \nWe also conduct monthly batches with developers who have just finished SRE, in which we encourage teamwork and collaboration among them, developing a group project.\nAlso lots of content in youtube, like BG Labs, Web2 to Web3, BG Episodes, among other video series, and IRL talks and workshops in ETH Global, Edcon and other events.\n\n- **Small Grants** We have different funding mechanisms to support high-impact devs, like BuidlGuidl streams, Cohort Streams towards a common objective, Ecosystem impact grants and BG Community Grants.', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/f6ed26e1-c5be-4ea9-bbce-d314c1a1034d.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f1b0c3a8-64a7-4bbb-8150-8817f47a1dbb.png', - socialLinks_website: "['https://buidlguidl.com/']", - socialLinks_farcaster: "['https://warpcast.com/buidlguidl']", - socialLinks_twitter: 'https://x.com/buidlguidl', - socialLinks_mirror: 'https://mirror.xyz/news.buidlguidl.eth', - team: "['6048', '343051', '390184']", - name: '🏰 BuidlGuidl Client', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', + socialLinks_mirror: '', + team: '', + name: 'Cryptofuzz', description: - "Project is in the early stages, but we already have an MVP that helps you get a reth full node up the fastest. One command, wait a couple days, and that’s it!\n\nOur goals with the client are:\n\n- Put lots of ETH nodes in LATAM, SEA and Africa.\n- Second highest priority is getting devs their own local node to build their dapps (indexers.. ). We aren't just strengthening the network but helping devs continue their edudaction\n- Third priority is building the distributed RPC and transaction service\n\nHere are the components we've built so far:\n\n- **Bootstrap Script**: We have created a bootstrap script, a one-liner command that users can paste into their terminal to clone and run the BuidlGuidl client. It is publicly available here: nodes.buidlguidl.com This script simplifies the setup process for new node operators. The code for this script is publicly available here: https://github.com/BuidlGuidl/buidlguidl-client\n\n- **BuidlGuidl Client**: We've developed a preliminary version of the BuidlGuidl client that can spin up both Execution Layer (EL) and Consensus Layer (CL) nodes. This client also includes an RPC proxy that checks in with our central hub. You can check out the initial code here: https://github.com/BuidlGuidl/buidlguidl-client\nWhile these components are functional, they are still in undergoing continuous improvement. Our focus now is on refining these tools and expanding their capabilities to ensure reliable performance and ease of use for the community.\n\n- **Proxy Server**: We have set up an initial version of our proxy server (rpc.buidlguidl.com), which will act as the hub for our distributed RPC system.", + 'Differential fuzzing to find bugs in cryptographic libraries.\n\nHundreds of bugs found in major cryptographic libraries. Runs 24/7 on Google OSS-Fuzz.\n\nBug list: https://github.com/guidovranken/cryptofuzz?tab=readme-ov-file#bugs-found-by-cryptofuzz\nLibrary support: https://github.com/guidovranken/cryptofuzz/tree/master/modules', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/95eb3b60-a01d-4142-b9f2-f7d8b1deaeb2.png', + 'https://storage.googleapis.com/op-atlas/6215ed53-5260-4d95-8d45-7978686135cd.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/98f8992d-d350-410c-abc0-de560fdc070e.png', + 'https://storage.googleapis.com/op-atlas/f5499378-c7bf-480d-8fbc-6ef4ec5d0856.png', project_socialLinks_website: - "['https://client.buidlguidl.com/', 'https://buidlguidl.com/']", - project_socialLinks_farcaster: "['https://warpcast.com/buidlguidl']", - project_socialLinks_twitter: 'https://twitter.com/buidlguidl', + "['https://github.com/guidovranken/cryptofuzz']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", + impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + impactStatement_subcategory: + "['Security audits specifically on the OP Stack or its components.']", impactStatement_statement: - "[{'answer': 'Our project supports the OP Stack by:\\n\\n1. **Expanding potential OP Stack node operators**: Our one-command setup simplifies node running, potentially increasing future OP Stack node operators.\\n2. **Growing the developer community**: Easier participation in Ethereum at the peer to peer level, potentially increasing exploration of Layer 2 solutions like OP Stack. This may lead to more dapps developed in the OP Stack, further enriching its ecosystem and driving adoption.\\n3. **Enhancing Ethereum mainnet decentralization**: More nodes in underserved regions also strengthen indirectly the OP Stack.\\n4. **Improving infrastructure reliability**: A safer and more robust networking layer on Ethereum makes everything up the stack safer and more robust', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"There probably wouldn't be a huge gap if the BuidlGuidl Client didn't exist. It's more of an efficiency play, making it easier to run nodes and, in turn, helping the Ethereum network — which the OP stack settles on — become more decentralized. \\n\\nWithout us, some node runners certainly wouldn't have their nodes up, while others would have to deal with the poor user experience of manually spinning up EL and CL pairs.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': '24/7 differential fuzzing of libsecp256k1, gnark, blst, golang cryptography and integer arithmetic. No relevant bugs were found within this specific time period, though previous findings include:\\n\\n- Various blst bugs (used by kzg) (e.g. https://github.com/supranational/blst/security/advisories/GHSA-x279-68rr-jp4p, https://github.com/search?q=repo%3Asupranational%2Fblst+vranken&type=commits)\\n- Two Go P256 scalar multiplication bugs (used by the P256 precompile) (CVE-2023-24532, Golang Github issue 60717, CVE-2022-23806)', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"Every direct or indirect user of the OP stack has benefited from my work on the OP Stack. This broad impact stems from the nature of my research, which focuses on validating the security properties of components that are fundamental to the OP stack's operation.\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 227000, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x981b75ccf20308ec809c133e42edeb87031964d718753a949e9b9b3397775b97', + id: '0x0a15ff59c1e8f4cf37610ff25b5f42ac06abae78cf4ad81e39146f7f50d42314', applicationId: - '0x981b75ccf20308ec809c133e42edeb87031964d718753a949e9b9b3397775b97', + '0x0a15ff59c1e8f4cf37610ff25b5f42ac06abae78cf4ad81e39146f7f50d42314', projectId: - '0x0b0abc06da9c1288848a05e4a330ae3ac54474143f1c2a61d71c2c3fb37cf217', + '0xbde4ef89d6c7719a9e514a74ba1f6accc016f8cbdc4e76ca50108927d45c4c4a', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Citizen Wallet', organization_description: '', - organizationAvatarUrl: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/de05e730-c051-4e58-956f-0db7fe6d11bf.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: 'ERC 6551 Token Bound Accounts Public Goods Dune Research by sealaunch', + team: "['20674', '266214', '393897']", + name: 'Citizen Wallet Core development', description: - 'sealaunch is onchain intel team dedicated in-depth onchain and Dune research for chains, protocols and dApps building on Ethereum. We worked closely with the ERC-6551 core dev team to develop and provide onchain data research that informed the development, strategy and adoption of this standard across EVM chains and OP Stack chains. Currently on the Top #10 Wizards on Dune.', + 'Citizen Wallet, offers communities the web 3 tools they need to easily launch, use and manage community currencies.\n\nSo far we have built:\n- Easy-to-use wallet native mobile app that takes away all the complexity of Web 3 (no gas fees, no configuration)\n- transaction monitoring dashboards\n- NFC wallet solution for simple tap-to-pay or tap-to-earn in-person transactions\n- Administration dashboard with simple flow to create token faucets for easy distribution.\n- Dedicated Point of Sale application to accept tokens in shops.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/e79623bd-9a9a-4fea-a6cd-2bfdd76b2ae4.png', + 'https://storage.googleapis.com/op-atlas/6b0b4d90-65d2-4e98-9e26-b8fd2216e943.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/b83423b3-5421-4d51-ba77-1e92be871768.png', - project_socialLinks_website: "['https://sealaunch.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/sealaunch']", - project_socialLinks_twitter: 'https://x.com/sealaunch_', + 'https://storage.googleapis.com/op-atlas/d2a87b39-c867-4110-a5cc-faabe009c0de.png', + project_socialLinks_website: "['https://citizenwallet.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/citizenwallet']", + project_socialLinks_twitter: 'https://x.com/citizenwallet', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Research which informs Ethereum core development']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'The ERC 6551 Token Bound Accounts Dune dashboards and research by sealaunch proved to be a useful onchain data resource to first inform the core dev team on product strategy, growth and partnerships. Secondly, as public good and readily available to anyone and media to track and educate on this standard and our analysis was mentioned by media outlets like this [CoinDesk example](https://www.coindesk.com/learn/what-is-erc-6551-unpacking-the-backpack-wallet/). And lastly, had an impact in attracting builders on the OP Stack namely on Base and Optimism to adopt and build with this standard on their projects, like for example the [Perma App](https://per.ma/) - a photo social app built on Base. Helping the expansion and diversity of use-cases and utility of the OP Stack.\\n', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'We believe that onchain data dashboards helps build trust in projects building on the OP stack by providing visibility but above all transparency for any stakeholders who wish to verify the data. Additionally, having resources like open Dune dashboards helps anyone better understand and educate themselves on ERC 6551 key metrics and analytics and its ecosystem of chains, projects and builders.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'With our NFC wallet implementation, we build a solution to create smart wallet accounts on any NFC tag using account abstraction. People can send tokens to their NFC tag and tap to pay at a series of whitelisted stations (to avoid abuse).\\n\\nIt allows you to do simple transactions in stablecoins or any other token. It can be used at events to manage payments and to allocate finite resources to make sure that these are distributed fairly (e.g. swag). It could also be used as a way to reward people (e.g. earn tokens by doing some positive actions at the event, tap your wristband to receive the tokens). Can can read more about it here: \\nhttps://citizenwallet.xyz/nfc-wallet-intro', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our NFC Wallet has been used at several events within the web3 and Optimism ecosystem over the last few months. We would like to highlight two of them: \\n- Celo Gather Berlin (1 June 2024): NFC wallet was used to create an in-event economy where users could complete challenges to earn tokens and buy SWAG. \\n - Full report here: https://citizenwallet.xyz/posts/implementing-nfc-wallet-at-celogather.\\n - During the event 761 transactions were made on Celo.\\n - Token contract: https://celoscan.io/address/0x3C960E72BBbD837293e75080E1d0Fee6a4640357\\n- Regen village during EthCC Brussels(8-12 July):\\n - https://www.regenvillage.brussels/\\n - https://x.com/citizenwallet/status/1804793942807834811\\n - During the event 1,383 transactions were made on Base.\\n - https://basescan.org/token/0x9e179257BE653C56F734Ad0bE8C59503592309Eb\\n - Full report: https://citizenwallet.xyz/posts/regen-village-brussels-2024\\n - Event video recap: https://www.youtube.com/watch?v=FSCi_173Alw', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5084,14 +4901,14 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x9932b50339f36c2327df7eac42965014d561c7401e6fdf50550727ad228f56f2', + id: '0x1c8ed7271463dff518cd4bc65e7c57d70746996a755bd9c5db403f3b389b8d5c', applicationId: - '0x9932b50339f36c2327df7eac42965014d561c7401e6fdf50550727ad228f56f2', + '0x1c8ed7271463dff518cd4bc65e7c57d70746996a755bd9c5db403f3b389b8d5c', projectId: - '0x66cce776ce6eaa99192120fc25b91ecc7b98e03210a08f0d3bfda82f542d3e1a', - category: 'Utility', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_TOOLING', + '0xcb0434aaf86a5dca68f96edefc22bf04a16bbfaa48b0a4a40c844f1afb8d7b1e', + category: 'NFT', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5101,112 +4918,110 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'OP ENS Gateway by Opti.Domains', + name: 'BASE BTC EARTH 🌍', description: - "Opti.Domains has developed an ENS Gateway implementation for OP Stack chains that supports various proofs, including those from L2OutputOracle, Dispute Game, and Anchor State. The appropriate proof is automatically selected based on the configuration of the OP Stack chain.\n\nThe Opti.Domains ENS Gateway automatically upgrades in response to the OP Stack's transition from L2OutputOracle to Dispute Game, requiring no manual intervention or updates to the verifier contract or gateway server.\n\nThe ENS Gateway, specifically the EVMGateway, enables trustless cross-chain data retrieval for ENS names deployed on Layer 2 networks like Optimism with a CCIP Gateway. When an ENS name lookup occurs, the resolver reverts with OffchainLookup containing the gateway URL. The client then contacts the gateway, which returns the requested data. This data is passed to a callback function on the resolver for verification before being returned to the client as the final result of the name lookup.\n\nOur ENS Gateway has a mechanism to ensure liveliness even in the event that the respected dispute game type has suddenly changed, as seen in the recent proposal, 'Upgrade Proposal #10: Granite Network Upgrade,' by storing a backup dispute game type and only trusting its anchor state.\n\nOpti.Domains has also developed social verification and attestation to EAS in collaboration with Bored Town. We are on our way to scaling ENS to OP. We have contributed to the ENS OP Gateway development, which is currently under review by ENS core developers.\n\nThe Namespace team has expressed interest and reached out to us with questions about using our OP ENS Gateway. Additionally, several teams have participated in discussions regarding the development of our OP ENS Gateway.", + "Hello, I am a designer. I am an artificial intelligence designer. I am 25 years old. I'm from Turkey. I need some support. I want to do more for Optimisim. I don't know much about Github. But everything I did here is as you want. I increased the on-chain activity and interacted with 420 wallets. https://element.market/collections/base-btc-earth", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/8f6ad6e0-029a-4f59-b1d2-c7885248b99a.png', + 'https://storage.googleapis.com/op-atlas/f7b97236-dce1-4e44-873c-74bb5f31b49c.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/135853fe-2393-4a0a-a959-044ff973fcf0.png', - project_socialLinks_website: "['https://opti.domains']", - project_socialLinks_farcaster: "['https://warpcast.com/optidomains.eth']", - project_socialLinks_twitter: 'https://x.com/optidomains', + 'https://storage.googleapis.com/op-atlas/963d18b8-32a1-4d7c-a09a-640cd20e4f22.png', + project_socialLinks_website: + "['https://element.market/collections/base-btc-earth']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + pricingModel: 'pay_to_use', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': \"Opti.Domains has developed an ENS Gateway implementation for OP Stack chains that supports various proofs, including those from L2OutputOracle, Dispute Game, and Anchor State. The appropriate proof is automatically selected based on the configuration of the OP Stack chain.\\n\\nThe Opti.Domains ENS Gateway automatically upgrades in response to the OP Stack's transition from L2OutputOracle to Dispute Game, requiring no manual intervention or updates to the verifier contract or gateway server.\\n\\nOur ENS Gateway has a mechanism to ensure liveliness even in the event that the respected dispute game type has suddenly changed, as seen in the recent proposal, 'Upgrade Proposal #10: Granite Network Upgrade,' by storing a backup dispute game type and only trusting its anchor state.\", 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': '- Teams building an ENS identity and infrastructure on OP Stack chains do not need to reimplement the gateway and verifier while having a fully verifiable and decentralized way to launch their identity with ENS subdomains or similar solutions.\\n- ENS Labs benefit from not having to spend man-days researching and developing the EVM Gateway on OP Stack chains.\\n- The Namespace team has expressed interest and reached out to us with questions about using our OP ENS Gateway. Additionally, several teams have participated in discussions regarding the development of our OP ENS Gateway.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': \"My NFT collection enabled the testing, distribution and operation of OP chains with its sales and interactions. NFT collections with artificial intelligence content attracted people's attention and gained interaction.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our tools were used by superchain users, which gave them easy access to the cheap and accessible nft side. They accessed and purchased the first AI-powered nft collections.This is true for all the projects I do.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 22117, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x99c7f0d5f0463118627b633d3e0f0a2354544ee285d77569cded515bfbeadd18', + id: '0x20f4347b57f82b8c7da5b6a1e88e25b5e37662484ab029b4bef81b4ba85fd06a', applicationId: - '0x99c7f0d5f0463118627b633d3e0f0a2354544ee285d77569cded515bfbeadd18', + '0x20f4347b57f82b8c7da5b6a1e88e25b5e37662484ab029b4bef81b4ba85fd06a', projectId: - '0xf2a60464d2a56fb47d2f8c13001edea71eda11ffd8fffec5f559495c6a5878d4', - category: 'Cross Chain', + '0x0e87091523c98dd4e4a4e4e1b695bf67c3db239bba68e7e45e01932293936985', + category: 'Governance', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Unruggable', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Optimism Design', organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ed676837-e1eb-45df-9066-2eb6eedb52e0.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/82442bd0-9394-450a-a95e-e5ad0761755a.png', - socialLinks_website: "['https://unruggable.com/']", - socialLinks_farcaster: "['https://warpcast.com/unruggable']", - socialLinks_twitter: 'https://x.com/unruggable_eth', + 'https://storage.googleapis.com/op-atlas/0f886e21-30aa-411f-bf60-da1cfe90c3fd.png', + organizationCoverImageUrl: '', + socialLinks_website: [], + socialLinks_farcaster: [], + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['841173', '9778', '12956']", - name: 'Unruggable', + team: "['5779', '844381']", + name: 'Retro Funding Site Design', description: - "Unruggable is focused on building the next generation of blockchain-based naming services. Our mission is to create secure and user-friendly solutions that enable projects and Layer 2 networks to establish their own naming systems using the Ethereum Name Service (ENS). As part of our commitment to open-source software development, we provide essential infrastructure that allows everyone to benefit from the scaling of ENS and L2 blockchains:\n\n'Unruggable Gateways' is an open source codebase that implements a complete solution for fetching proofs of data from rollup chains and verifying that data on Layer 1 Ethereum. We operate our own gateways using the codebase and are committed to supporting the trustless resolution of ENS names.", + 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ff2964ec-4435-4cf8-b993-e16f49b47b96.png', + 'https://storage.googleapis.com/op-atlas/86341a25-24ac-4e74-bd33-ebf7622e8863.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/49cf8f2c-bea6-4a22-bd7f-75a65138bd71.png', - project_socialLinks_website: "['https://unruggable.com/']", - project_socialLinks_farcaster: "['https://warpcast.com/unruggable.eth']", - project_socialLinks_twitter: 'https://x.com/unruggable_eth', + 'https://storage.googleapis.com/op-atlas/2183cd4a-1222-48d8-9f15-09edcb6aaf39.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Our `OPFaultVerifier` and `OPVerifier` contracts (deployed on L1) allow for the provable verification of any data stored on an OP Stack chain on L1. This includes both chains that do and do not implement fault proofs. Implementors can utilise our simple, well documented public API ([Unruggable Gateway Documentation](https://gateway-docs.unruggable.com)) to write smart contracts that utilise the power of [ERC-3668](https://eips.ethereum.org/EIPS/eip-3668) (CCIP Read) to trustlessly fetch data from OP stack chains. This significantly improves interoperability, and lowers the barrier to entry for working with the Optimism ecosystem.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'One example of our tooling in action is with NameSpace, a subname management platform that enables users to create subnames on Base using their ENS name. In a recent [forum post](https://gov.optimism.io/t/namespace-builder-grant-update-season-5-cycle-19/8794), they detailed their setup, which includes the use of Unruggable’s tooling.\\n\\nUnruggable’s tooling \"makes it possible to have fully verified ENS subnames by using proofs,\" ensuring that each subname is verifiable and secure. \\n\\nThe ability to leverage Unruggable’s system for fully verified subnames is a key advancement, providing enhanced trust and reliability to users managing their subnames within the ENS ecosystem.\\n\\n[opdemo.eth](https://discuss.ens.domains/t/ens-dao-newsletter-64-07-02-24/19354#new-optimistic-fault-proof-gateway-launched-34), which demonstrates resolving ENS names from the Optimism mainnet using fully proven resolution, showcasing secure and verifiable name resolution across L2 networks.', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: 'foundation-mission', - grant_1_link: - 'https://gov.optimism.io/t/cycle-19-final-grants-roundup/7850', - grant_1_amount: 60000, + "[{'answer': 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0x99e3bf049a80e9eab20de707bf5d328175e1f45b8e3152d3838e40b6394ceff7', + id: '0x21812d33e89a28c04f68dc3932b532c25f644747eb7e2f5c4aecf23afef1291a', applicationId: - '0x99e3bf049a80e9eab20de707bf5d328175e1f45b8e3152d3838e40b6394ceff7', + '0x21812d33e89a28c04f68dc3932b532c25f644747eb7e2f5c4aecf23afef1291a', projectId: - '0x7348ae42266ff626319e8ea5398343b847603b3cc7101b03d8e4fb2b75ea8db3', - category: 'Utility', + '0xa7d3f54fe62bbff857bba25d18d385d943741e6d970e5491d1341218e54a6762', + category: 'Social', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Runtime Verification', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: '', organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/44b30b3b-2bce-456e-be10-a04eabce257d.png', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['465226']", - name: 'Kontrol - formal verification tool based on Foundry and KEVM', + team: '', + name: 'FANBASE ✨', description: - 'Runtime Verification has been at the forefront of open-source formal verification tools for more than a decade. Our generalistic approach allows us to use our technology on multiple blockchains. While KEVM offers our verification infrastructure to all EVM-based smart contracts, Kontrol greatly reduces the barrier to entry to formal verification for Solidity smart contracts.\nOur tooling is completely open source and freely accessible to all developers of the Optimism ecosystem at no additional cost.\n\nKEVM is an EVM executable formal semantics written in the K framework. KEVM passes all Ethereum conformance tests and is the entry point for formally verifying smart contracts with the K framework. However, using plain KEVM requires ad-hoc training on the K framework to write specifications. Additionally, these specifications can be quite verbose, increasing the difficulty of writing them.\n\nKontrol solves this by allowing developers to write the formal specification of their smart contracts directly as Foundry property tests. These tests are automatically translated into KEVM specifications, keeping all the verification guarantees whilst allowing for a much more easy developer experience.', + 'This is a fanbase community that operates in the field of social engagement.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/fedec4f8-1b92-4e5c-a717-59258b0dd2ba.png', + 'https://cdn.charmverse.io/user-content/6020d938-f07e-4f95-a756-5562f175762e/f6550061-4756-49ac-b3da-6dc87fd589a9/76716e6b0c575e52832cf0f58cae6f2c.jpg', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/e0035388-4b23-4215-98e3-c96e712cc18c.png', - project_socialLinks_website: - "['https://runtimeverification.com/', 'https://kontrol.runtimeverification.com/']", - project_socialLinks_farcaster: "['https://warpcast.com/rv-inc']", - project_socialLinks_twitter: 'https://x.com/rv_inc', + 'https://cdn.charmverse.io/user-content/6020d938-f07e-4f95-a756-5562f175762e/906bad2e-6a95-4bba-9261-aeaf88ff7afe/Screenshot_20240823-030141_1.jpg', + project_socialLinks_website: "['https://www.fanbase.app/']", + project_socialLinks_farcaster: + "['https://warpcast.com/denzooo', 'https://warpcast.com/phynn', 'https://warpcast.com/cepodr']", + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'The infrastructure we built, centred around Kontrol, has greatly facilitated the testing, deployment, and operation of OP chains by integrating formal verification directly into the CI pipeline. Kontrol automates the verification of critical properties, such as the L1 pausability mechanism, ensuring that every code change is rigorously tested before deployment. This continuous and automated testing reduces the likelihood of vulnerabilities making it to production, enhancing the overall security and reliability of the OP chains. By catching issues early in the development process, Kontrol accelerates deployment cycles and ensures that the operation of OP chains remains robust and secure, ultimately supporting a more resilient and dependable Optimism ecosystem.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"OP Labs is one of the biggest users of Kontrol. Here's Matt's feedback on our work with Optimism: https://x.com/msolomon44/status/1828523849832612016\\n\\nWonderland team is also actively using Kontrol to test the interoperability mechanism that the Optimism team recently introduced. We are helping them out in the dedicated channel on the Optimism Protocol R&D server. We've conducted a Kontrol intro workshop for their team and here are the demo tests we've used: https://github.com/runtimeverification/kontrol-demo/pull/20 \\n\", 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'My project is to spread OP chain services through my infrastructure, through various media and networks.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Everyone can use my tools to explore much deeper into the op chain, the benefit is to get to know more about the op chain through my infrastructure.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5215,98 +5030,100 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0x9b70e4a6f08471455d1d674f4e430da7b4fd43848002b47d1b6e1c1a1e0a36db', + id: '0x30fae4e752f5b084ed2a743e515374988876ce8b0cf0672311907c5b7254729b', applicationId: - '0x9b70e4a6f08471455d1d674f4e430da7b4fd43848002b47d1b6e1c1a1e0a36db', + '0x30fae4e752f5b084ed2a743e515374988876ce8b0cf0672311907c5b7254729b', projectId: - '0x52d53d44856f5a356053e55e3ad339d7207486b0210fe48aa2c1a0ec79c55d9c', - category: 'CeFi', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: "Louie's Kingdom", - organization_description: 'The dream team', + '0x6d2ee66c931e5c3be17e1417e38617f1efee5be223cf53dd507779d68229a198', + category: 'Utility', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'brainbot/Shutter', + organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/c31efc70-9663-443c-a3ed-501ba694b1e6.png', + 'https://storage.googleapis.com/op-atlas/d7e880ed-d48a-4329-97a9-75f21d815def.png', organizationCoverImageUrl: '', socialLinks_website: [], socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['4289', '191212']", - name: 'Test Project', - description: 'This new', + team: "['316218', '358280']", + name: 'Shutterize Optimism SDK (SHOP SDK)', + description: + 'shop-sdk is a custom ethersjs provider, that allows to send shutter encrypted ("shutterized") transactions on Shutter-Optimism.\n\nShutter-Optimism is an Optimism testnet, that provides a mechanism to include Shutter encrypted transactions.\n\nShutter is a distributed key generation (DKG) threshold encryption protocol, that enables applications and/or users to encrypt arbitrary data, commit the encrypted message (i.e. by sending it in a transaction) and have it revealed after a certain condition is met (i.e. once the position of the transaction in a future block is confirmed). Shutter\'s threshold decryption scheme, where a threshold of n out of m key holders ("keypers") need to release their decryption key share for successful reveal, enables an environment where censorship, by not releasing decryption keys, and collusion, by peeking into encrypted messages before the reveal condition was reached, become very unlikely.\n\nIn Shutter-Optimism this allows to build MEV-resistant applications.\n\nThe intention of shop-sdk is to make it as easy as possible to transform a traditional application, that could run on Optimism, into a MEV protected version running on Shutter-Optimism.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/9f096f4a-099d-44e6-bbe8-262f3af73ee0.png', + 'https://storage.googleapis.com/op-atlas/563c3a20-cbfb-4a1f-b03a-058b580eb2ba.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/decabfe9-ebc2-4e01-89ff-1028dab807ca.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + 'https://storage.googleapis.com/op-atlas/0407765b-33f4-4c22-9392-faeae91c37cc.png', + project_socialLinks_website: + "['https://shutter.network/', 'https://linktr.ee/ShutterNetwork', 'https://blog.shutter.network/']", + project_socialLinks_farcaster: "['https://warpcast.com/shutter']", + project_socialLinks_twitter: 'https://x.com/ShutterNetwork', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'ddd projectprojectprojectprojectproject\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good projectMy project is good project', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'My project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good project\\nMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project is good projectMy project i', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", - grant_1: 'token-house-mission', - grant_1_link: - 'https://retrofunding.optimism.io/projects/0xb8ea29378df33c1bcb64c221a1e2e342a99d3fad8233dcec94eddd137a3eab05/grants', - grant_1_amount: 10000, + "[{'answer': 'The intention of shop-SDK is to make it as easy as possible to transform a traditional application that could run on Optimism into an MEV-protected version running on Shutter-Optimism.\\n\\nshop-sdk is a custom ethersjs provider that allows to send shutter encrypted (\"shutterized\") transactions on Shutter-Optimism.\\n\\nShutter-Optimism is an Optimism testnet, that provides a mechanism to include Shutter encrypted transactions.\\n\\nShutter is a distributed key generation (DKG) threshold encryption protocol, that enables applications and/or users to encrypt arbitrary data, commit the encrypted message (i.e. by sending it in a transaction) and have it revealed after a certain condition is met (i.e. once the position of the transaction in a future block is confirmed).\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'DEXs and DeFi applications, along with their users, stand to benefit the most from our work on the OP Stack, particularly from our SDK. The SDK allows for easy integration of encryption at the front-end level, providing shielded trading and protection against front-running and sandwich attacks. This results in fairer pricing and enhanced security for users. Although we are still in discussions with DEXs like Velodrome on Optimism, they are actively researching how to integrate these features.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xa36ae760edb91ba8bfcc2b52b664fb4731ec09b78033b1bbec9d83d167d590e8', + id: '0x34d6f272baccb8bb8ee494ec6c31d8d3e0f66623f57a040ea04cdd4d7e03bd1a', applicationId: - '0xa36ae760edb91ba8bfcc2b52b664fb4731ec09b78033b1bbec9d83d167d590e8', + '0x34d6f272baccb8bb8ee494ec6c31d8d3e0f66623f57a040ea04cdd4d7e03bd1a', projectId: - '0x9b6e73ac9e887b808c56aba853cfadad39df635d11bd5a9d6697f2e2658f4b5c', - category: 'Utility', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', + '0xbc6524eaed9585ebbca313f8112c3d8ed4a4ac7ff9b5bd6ef92eff715d0d2a58', + category: 'DeFi', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'RedStone Oracles', organization_description: '', organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + socialLinks_website: "['https://redstone.finance/']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/redstone_defi', socialLinks_mirror: '', - team: '', - name: 'OP Stack Individual contributions', - description: 'Web 3 enthusiast and indie developer.', + team: "['849400']", + name: 'RedStone Oracles for OP-stack chains', + description: + "RedStone is fastest growing Modular Oracle with clients including Pendle, Morpho, Ethena, Etherfi, Renzo, Puffer, Venus, Silo, Sommelier, Gearbox, Frax, Merlin Chain, BOB and 70+ other companies. We're live on Optimism and OP-Stack chains.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/872bb13b-ee5e-41fc-baab-2c35063af98e.png', + 'https://storage.googleapis.com/op-atlas/70be0977-18f4-4638-83a5-909bdb7547fd.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/69471b4a-baca-4669-8bc8-dd3e040a94f5.png', - project_socialLinks_website: "['https://github.com/kelreel']", - project_socialLinks_farcaster: "['https://warpcast.com/kelreel']", - project_socialLinks_twitter: 'https://x.com/0x_kir', + 'https://storage.googleapis.com/op-atlas/37797c19-fde3-47ca-a06e-781d63e85941.png', + project_socialLinks_website: "['redstone.finance']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/redstone_defi', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.']", + "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'My contributions to the codebase:\\n- improved template app design & layouts (op-scaffold, ecosystem/app)\\n- fixed wallet connection errors, interactions with rpc (wagmi) in some places (op-scaffold, ecosystem/app)\\n- small fixes related to the superchain console (ecosystem)\\n- improved env and documentation\\n\\nDetails are in the project links.', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'New and current app developers on the OP stack will be able to scaffold new applications faster, with a better initial code base and past bugs fixed. Updated documentation details will help resolve issues more quickly when creating new applications.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', + "[{'answer': \"Oracles being the backbone of DeFi are essential piece of infra needed for operating your OP-stack chain. Price feeds are essential to have any kind of DeFi activity on your chain. (enabling Lending, Derivatives, CDPs, Composable leverage and much more). Thanks to our modular architecture (easy EVM deployments, which is a perfect fit for OP stack chains) and previous grant recieved from foundation (Season 4 Grant) we were able to establish close cooperation with multiple OP-Stack chains, on a lot of these chains we're available in both pull & push models (where we need to deploy and maintain relayer infrastructure), and became the oracle of choice for those ecosystems (bootstraping them also with our partners intros and connections to help onboard new dApps).\\n\\nRedStone is currently available on these chains:\\n- Op Mainnet\\nIn the Pull & push model, we have integrations with Silo, Granary.\\n- Base\\nIn the Pull & push model, currently on base our feeds are used by Morpho, Reserve\\n\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"\\n- Blast\\n - In the Pull & push model, we're the main oracle provider on blast and were first ones to introduce push model feeds there (including ecosystem native ones), we won big bang competition, currently ~8 protocols use our price feeds there.\\n- Mantle\\n - In the Pull & push model, we have integrations with Pendle, Native, Skate Fi protocols there.\\n- Mode\\n -In the Pull & push model, we are the oracle of choice for mode and helped bootstrap their ecosystem together with our partners. We cover all dApps there with our price feeds: LayerBank, IONIC, Ironclad, LogX.\\n- Fraxtal\\n - In the Pull & push model, again we were the oracle of choice for this ecosystem our push feeds were essential for defi there and are used by all significant protocols (i.e. Fraxlend)\\n- BOB\\n - In the Pull & push model, all major lending markets there use our feeds.\\n- opBNB\\n - In the Pul model.\\n- Zircuit\\n - In the Pull & push model, we're the oracle of choice there.\\n\", 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: 'foundation-grant', + grant_1_link: 'https://app.charmverse.io/op-grants/page-472203923295754', + grant_1_amount: 40000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xa61bcee8283f00abfca8890d602ea9542a75c925f43e05d85cb4e017c60f8017', + id: '0x3562585a218194b1d74252545914f6b23b17c78de46f63bc50b1220dfa077994', applicationId: - '0xa61bcee8283f00abfca8890d602ea9542a75c925f43e05d85cb4e017c60f8017', + '0x3562585a218194b1d74252545914f6b23b17c78de46f63bc50b1220dfa077994', projectId: - '0x353abbe13c196db288730b62e7a6d8f2755ee968681a67bc7d5e381621ad211a', - category: 'Utility', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - 'PW subcategory': 'OP_STACK_TOOLING', + '0x7161c183e6d6f3f44499ffb4e28ed03c569089437778961f5b5544fb54791d4c', + category: 'Social', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5316,22 +5133,23 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'xuwinnie.review', - description: 'Security Researcher.', + name: 'Web3Drop', + description: + 'Web3Drop is an all in one free alpha community. Providing giveaways, new NFT collections, tools, platforms and analysis.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/23976744-db3b-49b9-b5d4-3b629a28dd3a.png', + 'https://cdn.charmverse.io/user-content/5884c2ec-f7dc-4176-ba5c-c04931d55117/a9c1d70c-476b-4bfa-a5aa-dc6586443751/web3drop.jpg', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f7905adc-4525-4ea2-bc64-925690c7069c.png', - project_socialLinks_website: "['xuwinnie.review']", + 'https://cdn.charmverse.io/user-content/5884c2ec-f7dc-4176-ba5c-c04931d55117/bfc3b09a-0b59-401f-b67a-914718dea130/photo1711950336.jpeg', + project_socialLinks_website: "['https://linktr.ee/web3_drop']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/xuwinniexu', + project_socialLinks_twitter: 'Web3_Drop', project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Security audits specifically on the OP Stack or its components.']", + "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': '- Performed a security audit on the OP Stack Fault Proof implementation through Code4rena.\\n- Identified *C4 H-01: Invalid DISPUTED_L2_BLOCK_NUMBER is passed to VM.* This bug enables an attacker to counter a valid output claim by providing a trace containing one block after the original claim.\\n- One of the two High Severity issues to be fixed in the upcoming [Granite Network Upgrade](https://gov.optimism.io/t/upgrade-proposal-10-granite-network-upgrade/8733), and the only directly exploitable one.\\n- The first and the only reasercher to identify this issue during a series of third-party security audits.\\n', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': 'Protocols & Users on OP Stack, Fault Proof Game participants. \\n- If this bug remains unfixed, valid state transition could be disputed, and chain-level liveness issue could occur.\\n- Malicious actor can steal the bond from honest dispute game participants.', 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': 'Web3Drop is a comprehensive, free alpha community that offers a range of services for Web3 enthusiasts. It provides members with access to giveaways, the latest NFT collections, specialized tools, platforms, and in-depth analysis. The community is designed to keep its members informed and ahead in the rapidly evolving Web3 space.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Web3Drop is a comprehensive, free alpha community that offers a range of services for Web3 enthusiasts. It provides members with access to giveaways, the latest NFT collections, specialized tools, platforms, and in-depth analysis. The community is designed to keep its members informed and ahead in the rapidly evolving Web3 space.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5340,99 +5158,105 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xa65ce0321eca02b484622525733d9e5d1ebe01618c901125cca9ec3f84900916', + id: '0x40de60e9c823d1a278f432a95d4393218c8c0fd9ab8bc6c5e3202fa1b040c7a6', applicationId: - '0xa65ce0321eca02b484622525733d9e5d1ebe01618c901125cca9ec3f84900916', + '0x40de60e9c823d1a278f432a95d4393218c8c0fd9ab8bc6c5e3202fa1b040c7a6', projectId: - '0x1480383a90f1ab95cfedee6ea130dca700e5236eceb7dcf3f08a0e96b43c90aa', - category: 'NFT', + '0xbd7efe4f47254e152bc1193b095dbad6711748577df2cd8f6a55c125ea58a376', + category: 'Utility', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'CryptoZombies', + organization_description: + 'CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism.', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/ddb6b9ee-66da-4d4c-b070-8c1876b5b21d.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/fb81a27f-db98-45a3-a0a0-cfa08e07e547.png', + socialLinks_website: "['https://cryptozombies.io']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/cryptozombieshq', socialLinks_mirror: '', - team: '', - name: 'MonstersOnBase', + team: "['847269']", + name: 'CryptoZombies', description: - "Hello, I am a designer. I am an artificial intelligence designer. I am 25 years old. I'm from Turkey. I need some support. I want to do more for Optimisim. I don't know much about Github. But everything I did here is as you want. I increased the on-chain activity and interacted with 420 wallets.", + "CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism.\n\nOur platform is free and used by more than 500,000 developers worldwide. Consequently, we've broadened the Optimism Collective's audience while streamlining developer onboarding. In doing so, we've blended simplicity and humor, making the art of writing smart contracts on Optimism fun and accessible. Furthermore, our Telegram community ensures prompt support from our engineers, aiding both newcomers and experienced developers alike.\n\nWe've teamed up with the Optimism Foundation to build a course, Optimism Unleashed, that teaches students to write, test, and deploy smart contracts on the OP Mainnet and use the Superchain Faucet. The course is available at https://cryptozombies.io/en/optimism.\n\nWe're also building [CryptoZombies Apocalypse](https://apocalypse.cryptozombies.io/), an Optimism-based tower defense game where players fight zombie waves to save humanity. The game includes an educational curriculum providing hands-on experience building blockchain-powered game content.\n\nEarly adopters can now claim Early Bird Badge NFTs for game access. To boost adoption, we're covering minting fees on Optimism.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ef7bc6d3-c915-4390-9d7f-f781d6f7fea3.png', + 'https://storage.googleapis.com/op-atlas/e18bade7-4f41-4c9a-b531-cc7f55826d3a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/6cf81b2e-43b7-4645-ab66-39f71cb1132b.png', + 'https://storage.googleapis.com/op-atlas/4abcba4f-797d-4600-bf03-8c4200ff2494.png', project_socialLinks_website: - "['https://element.market/collections/monstersonbase']", + "['https://cryptozombies.io/', 'https://apocalypse.cryptozombies.io/']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + project_socialLinks_twitter: 'https://twitter.com/cryptozombieshq', project_socialLinks_mirror: '', - pricingModel: 'freemium', + pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': \"My NFT collection enabled the testing, distribution and operation of OP chains with its sales and interactions. NFT collections with artificial intelligence content attracted people's attention and gained interaction.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our tools were used by superchain users, which gave them easy access to the cheap and accessible nft side. They accessed and purchased the first AI-powered nft collections.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': \"CryptoZombies is an interactive school that teaches students to write smart contracts by making their own crypto-collectibles game. CryptoZombies was the first tutorial on the internet for NFTs and is still very relevant to the new crop of web3 developers looking to enter the industry today. The curriculum is focused on Solidity development, which also helps onboard new developers to Optimism. \\n\\n\\nFurthermore, we've teamed up with the Optimism Foundation to build a new course, Optimism Unleashed, that teaches students to write, test, and deploy smart contracts on the OP Mainnet and use the Superchain Faucet. The course is available at https://cryptozombies.io/en/optimism\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Developer interest has grown this year. Since January, our user base has increased by 23%, reaching 138,000 users.\\n\\n\\nGooge Analytics: https://drive.google.com/file/d/1qOmax2pbKkyVt_ho5RFQD-oT3zWosFWQ/view?usp=share_link', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 130577.81, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xa6d24467fee1f912ca1e3fd6c5b37578b57ebcf5e10a3eac75a6ea43bfcc2d49', + id: '0x431cfc98fc6400743da8e926ebd8dbb9aafe32ce2e280e71d8fba7a568f71796', applicationId: - '0xa6d24467fee1f912ca1e3fd6c5b37578b57ebcf5e10a3eac75a6ea43bfcc2d49', + '0x431cfc98fc6400743da8e926ebd8dbb9aafe32ce2e280e71d8fba7a568f71796', projectId: - '0x522e410dc5c49ce03c9babaa1dd3f97b042e3bd25c4da22c0a484a2992ac2ac0', + '0x80a7a36ae190817283d49b64d9ce3ff729cf93a6f55135442162866c581cfa63', category: 'Utility', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: 'Punk Shield', + organization_description: + 'Punkshield is an advanced security solution designed to protect your valuable digital assets. It offers a multi-signature (multi-sig) wallet, adding multiple layers of security to safeguard your crypto holdings. Punkshield allows users to enable two-factor authentication (2FA) through Email or Google Authenticator for enhanced protection. The platform also includes a mobile-friendly interface, making it easy to manage your assets on the go.', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/7c370767-c18c-48ae-9032-ce1124d08c04.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/5cd98b48-08ab-4087-a133-c2e4d410a896.png', + socialLinks_website: "['https://punkshield.xyz/']", + socialLinks_farcaster: "['https://warpcast.com/punkshield.eth']", + socialLinks_twitter: 'punkonmint', socialLinks_mirror: '', - team: '', - name: 'GasHawk', + team: "['841741']", + name: 'Punk Shield', description: - 'GasHawk makes living onchain more efficient, safe, and secure. We’ve started with a service that saves retail and institutional clients up to 95% on transaction fees by accepting signed TXs and time sensitivities from users and executing in the optimal block during that window', + 'Punkshield is an advanced security solution designed to protect your valuable digital assets. It offers a multi-signature (multi-sig) wallet, adding multiple layers of security to safeguard your crypto holdings. Punkshield allows users to enable two-factor authentication (2FA) through Email or Google Authenticator for enhanced protection. The platform also includes a mobile-friendly interface, making it easy to manage your assets on the go.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/8c78ad33-fb6f-432e-8530-b9c889bfc3d3.png', + 'https://storage.googleapis.com/op-atlas/7782a4d3-48ab-4027-b2ac-7685dd744470.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/5ccb2584-6344-48bb-85a0-2c2d0e41d2d3.png', - project_socialLinks_website: "['https://www.gashawk.io/']", - project_socialLinks_farcaster: "['https://warpcast.com/dhannum8']", - project_socialLinks_twitter: 'https://x.com/gashawkio', - project_socialLinks_mirror: 'https://dhannum8.mirror.xyz/', + 'https://storage.googleapis.com/op-atlas/31d95f35-43e6-4c07-821b-70221b57e233.png', + project_socialLinks_website: "['https://punkshield.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/punkshield.eth']", + project_socialLinks_twitter: 'https://x.com/Punkonbase', + project_socialLinks_mirror: '', pricingModel: 'freemium', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'GasHawk provides a non custodial, automated, transaction manager focused on making any interaction onchain more safe, efficient, and secure. We provide multiple services that can be used by end users, contract deployers, institutions and projects building on ETH mainnet, OP, Base and Sepolia. GasHawk enables developers to cheaply and securely deploy/interact with dapps, driving considerable value to the Optimism ecosystem, help retain projects and developers, and unlock new application designs. GasHawk allows developers and users to transact/deploy on chain at any time and level of volatility, with confidence that they will get the best transaction fee available on chain, within their chosen time frame. GasHawk has also provided research and implementation into Optimisms Sequencer Address which shows we can save Optimism millions per year. We are now researching a blob based submission service to implement savings for OP, Base, Worldchain, and other chains built on the OP Stack.\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'GasHawk improves the user and developer experience through intelligent submission strategies on ETH mainnet, OP, Base, and Seoplia. GasHawk is a versatile service designed for a wide range of users, including developers deploying contracts, artists releasing NFT collections, platforms, protocols, relayers, collectors, investors, and everyday users. GasHawk has successfully processed tens of thousands transactions for over 7,500 users. Additionally we have shown through a customized case study that at minimum GasHawk can save Optimism millions of dollars per year with our intelligent submission strategies for its sequencer address. As we continue research on blob based execution services we plan to create another public case study and show how that can create more savings/value for the OP ecosystem.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': '', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': '', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 10500, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xb0913f628928698951760223a5691480a8f63b4545b5177490959b8966330272', + id: '0x4402a5bf69839aacfc90a3ab33252260ae0fa549634b3f8955ea7e597a6ab942', applicationId: - '0xb0913f628928698951760223a5691480a8f63b4545b5177490959b8966330272', + '0x4402a5bf69839aacfc90a3ab33252260ae0fa549634b3f8955ea7e597a6ab942', projectId: - '0x83b46efce8ff1937a49883b323b22d3483d1843522f614ab4f20cc20545067bb', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', + '0x5bf4cb9356352d8d123d9925d213594088a16a5aacb407030a2b25de728217bd', + category: 'Cross Chain', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5442,124 +5266,127 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Jonas Project', - description: 'This is a description', + name: 'Owlto Finance', + description: + '🦉 An intent-centric interoperability protocol, "Bridge the World with AI Agent". \n\nBuild on #BTC | #ETH | #SOL Eco \n\n⚡️ Safe, Fast, Low-priced and Easy-to-use.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/72790b69-7d90-4f9c-9266-bc5ab8016183.png', + 'https://storage.googleapis.com/op-atlas/a7ef0d7f-ce00-4eba-b008-56b9097dbc43.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/600b373a-da34-49c9-a7de-cd9306a7e90c.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + 'https://storage.googleapis.com/op-atlas/85835697-4130-4543-9bbe-5cfd09034925.png', + project_socialLinks_website: "['https://owlto.finance']", + project_socialLinks_farcaster: "['https://warpcast.com/owltofinance']", + project_socialLinks_twitter: 'https://x.com/Owlto_Finance', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + pricingModel: 'pay_to_use', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Ethereum client implementations', 'Ethereum test networks', 'Infrastructure to test and deploy chains', 'Languages which are dedicated to developing smart contracts', 'Research which informs Ethereum core development']", + "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': ' \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP awdwadawdawdawdadwawdawadwwadawdwa\\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'It is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP awdwadawdawdawdadwawdawadwwadawdwa\\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP \\nIt is very dependency and very important to Mrs OP ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'Owlto Finance has developed a smart contract deployment tool: https://owlto.finance/deploy, which allows users to deploy smart contracts and ERC-20 tokens on superchains like Base, Mode, Zora, and Kroma. It only requires a simple one-step operation', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'As of now, users have deployed over 120,000 contracts using this tool, with 82,337 on Base, 6,293 on Kroma, 20,555 on Zora, and 15,628 on Mode. Made a significant contribution to superchains based on the OP Stack\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '25m-50m', + grant_1_amount: 55495.2, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xb4fc05ba3a42e23c1f272eeb8cf98a881bc5e4402d2eb5accdc52cd20624aedf', + id: '0x48636b24079a7a3d2694f0d5d4f80e0828a68fecc8e36cca4e47618bd6073b1c', applicationId: - '0xb4fc05ba3a42e23c1f272eeb8cf98a881bc5e4402d2eb5accdc52cd20624aedf', + '0x48636b24079a7a3d2694f0d5d4f80e0828a68fecc8e36cca4e47618bd6073b1c', projectId: - '0x039dd46c72b1c02723e8f81a08b606a54b5f413c6756e60ba9e3a467dbbcf38b', - category: 'Utility', + '0x0242f727cd5dc0878cfc297be8046e3527563cc12f28021ea1eeb6611d86eb0e', + category: 'Social', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Blocknative', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: '', organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/67b75c95-4f8c-4cc9-9dca-2d4b12b2b682.png', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['410300']", - name: 'Blocknative Decoding API', + team: '', + name: 'Crypto4Bunnies🐰🥕', description: - 'Blocknative is dedicated to building developer-friendly tools that enhance user experience and ecosystem growth. We specialize in creating innovative solutions for gas fee estimation across various blockchains and have been building, running, and maintaining advanced gas estimation and optimization infrastructure since 2021.', + 'Italian web3 community in which to popularize blockchain and its potential with the best projects to accelerate mass adoption and educate users on the transition from web2 to web3\nOur services include articles, live streaming on twitch, threads and giveaways on social, Youtube channel for video content, reels on tik tok, podcasts. We also have Italian communities on discord, a telegram channel and a channel on warpcast', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/6445d309-3c48-429b-85c7-46b3013baeb7.png', + 'https://storage.googleapis.com/op-atlas/3a0567f1-275b-46e2-b94e-040cc35dd014.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/514008b5-80bb-4cf3-87e8-45b4ce67beb3.png', - project_socialLinks_website: "['Blocknative.com']", - project_socialLinks_farcaster: "['https://warpcast.com/blocknative']", - project_socialLinks_twitter: 'x.com/blocknative', - project_socialLinks_mirror: '', + 'https://storage.googleapis.com/op-atlas/c26eec87-530c-406c-8fb9-130c13ee40f0.png', + project_socialLinks_website: + "['https://x.com/crypto4bunnies', 'https://www.youtube.com/@crypto4bunnies', 't.me/RadioHolder', 'https://www.instagram.com/crypto4bunnies/', 'https://www.tiktok.com/@panofsky']", + project_socialLinks_farcaster: + "['https://warpcast.com/panofsky', 'https://warpcast.com/~/channel/base-it']", + project_socialLinks_twitter: 'https://x.com/panofsky167', + project_socialLinks_mirror: + 'https://mirror.xyz/0xd386E9bDC4095BED8333aF3F0d48F6dBc4cB0Cab', pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Services for deploying and hosting an OP Chain.', 'Security audits specifically on the OP Stack or its components.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'The Blocknative Decoding API removes a significant barrier to entry for developers building on Optimism. By providing effortless decoding of complex transaction data, we empower developers to focus on building innovative applications instead of wasting time and resources on manual decoding.\\n\\n- Effortless Decoding: Our API eliminates the need for developers to manually decode bytes of data. We handle the complex computations and translate them into clear, human-readable JSON format.\\n- Reduced Dev Time: Developers can integrate our API and get started building L2 applications much faster.\\n- Improved DeEx: No more deciphering complex data formats or worrying about format changes. - - Enhanced Observability: Developers and end-users can track transaction status throughout the entire journey, from L2 to L1. This provides valuable insights for debugging and troubleshooting.\\n- Future-Proof: The Blocknative Decoding API automatically handles updates behind the scenes\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Support for the Superchain Network: We currently support Optimism, Base, Mode, Zora, Kroma, and Blast making it a one-stop shop for Optimism Superchain L2 development. We are actively working on supporting more Superchains.\\n\\nIntegration into Optimism Documentation: Our API is featured in the official Optimism documentation for decoding, showcasing its value to the Optimism developer community.\\n\\nEthernow.xyz Integration: The Blocknative Decoding API powers the transaction decoding displayed on Ethernow.xyz, a popular platform for exploring how transactions settle onto the ETH L1.\\n\\nBy simplifying L2 development, the Blocknative Decoding API directly contributes to the growth and adoption of the OP Stack. We are committed to supporting the Optimism ecosystem and believe our API plays a crucial role in enabling developers to build the future of blockchain applications.\\n\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'with our channels through both video and written tutorial articles we help newbies understand the mechanisms of superchains and guide them step by step helping them if they have problems thanks to our assitance on our community', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'we have concretely helped dozens of people who were incapable of it to use blockchain technology at airdrop by assisting them and explaining the main features also stayed to follow other projects having the minimum skills to follow the dynamics of the web world3', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 99378, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xb6a47d2320d9ed131185bb78d349d4fc7887e599bc0d99bb3d8978b1afed65c7', + id: '0x525940d18c0128bd891b8f8e343d93609cb191b4d582f92edc174bc65a754406', applicationId: - '0xb6a47d2320d9ed131185bb78d349d4fc7887e599bc0d99bb3d8978b1afed65c7', + '0x525940d18c0128bd891b8f8e343d93609cb191b4d582f92edc174bc65a754406', projectId: - '0x193256f7753cf4350332ab5222990944b45d7ae280cd64e2bef8127ede2a2343', - category: 'Governance', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'LexDAO', + '0x3f8baf6d4f2cbe2d02f471274f32ad259a446e84dd82c600f034d36f84a2a3d3', + category: 'NFT', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', + organization_name: '', organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/ba15df22-7f86-42af-bbec-1013e2643e5c.png', + organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['317851']", - name: 'LexDAO', + team: '', + name: 'PANTONE PLANET', description: - 'LexDAO is a legal engineering guild bringing law to code and coded law to the masses. Law is a public good.', + 'Pantone Planet, is an NFT series from the universe, with different colors and has its own uniqueness', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/47a526bd-99c9-4d75-9798-c4cbfaf90c3a.png', + 'https://cdn.charmverse.io/user-content/9090e73a-29c0-4526-aa48-502931e587db/32fb3d1a-2380-489f-af46-05281394491c/simon-lee-eGALMCJ_Cvk-unsplash.jpg', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/98c31632-2782-43aa-af23-9727cbd886e2.png', - project_socialLinks_website: "['https://lexdao.org/']", - project_socialLinks_farcaster: "['@lexdao']", - project_socialLinks_twitter: '@lex_dao', + 'https://cdn.charmverse.io/user-content/9090e73a-29c0-4526-aa48-502931e587db/eef933e3-67a1-4f67-9fb1-f83b721d928b/WhatsApp-Image-2024-06-20-at-01.15.39_89df9811.jpg', + project_socialLinks_website: + "['https://opensea.io/collection/pantone-planet-1']", + project_socialLinks_farcaster: "['https://warpcast.com/zoopdrop.eth']", + project_socialLinks_twitter: 'sakbaniiiii', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Research which informs Ethereum core development']", + "['Research which informs Ethereum core development', 'Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Work on core components of the OP Stack, including client implementations, modules, and modifications.', 'Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': \"LexDAO supports the OP Stack by providing decentralized legal tooling and smart contract enforcement, ensuring compliance and dispute resolution for dApps built on the OP Stack. Our services enhance the security and trustworthiness of transactions, making legal mechanisms accessible, reducing legal risks, and fostering safer adoption of Optimism's modular blockchain infrastructure. This support is crucial for maintaining operational integrity and regulatory compliance within the OP Stack ecosystem, contributing to the overall growth and resilience of projects leveraging the technology.\", 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"If LexDAO ceased to exist, the OP Stack would lose a critical suppor element of the layer of decentralized legal support, impacting dApps' ability to resolve disputes, enforce smart contracts, and manage legal compliance effectively. This would increase legal uncertainties, potential liabilities, and operational risks for developers and users, potentially undermining trust and adoption of the OP Stack ecosystem. Without LexDAO, projects would need to seek traditional, less efficient legal solutions, reducing the OP Stack’s appeal as a secure, compliant blockchain infrastructure for decentralized applications.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'To facilitate the testing, deployment, and operation of OP (Optimistic Rollup) chains, I’d focus on the following aspects of infrastructure:\\n\\nDevelopment Environment:\\n - Simulators and Testnets: Infrastructure includes tools and environments like Kovan or Optimism’s own testnets, where developers can test their contracts and interactions without risking real assets. Simulators mimic the behavior of the mainnet, allowing for thorough testing.\\n - Development Frameworks: Tools like Hardhat or Truffle are configured to support OP chains, enabling developers to deploy and interact with smart contracts in a local or test environment.\\n\\n\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"Although I don't have direct experience with specific tooling or users, I can share how various types of tooling for OP chains are generally used and benefited by different stakeholders based on industry practices:\", 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 98000, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xb8245308e1c3254dcff6ff8e2839cdf1db8337cbae359062241543eec883b909', + id: '0x5276d4d412a177b622203b0692ebd9be3cce24eb412ec5a50f025345ba4f4159', applicationId: - '0xb8245308e1c3254dcff6ff8e2839cdf1db8337cbae359062241543eec883b909', + '0x5276d4d412a177b622203b0692ebd9be3cce24eb412ec5a50f025345ba4f4159', projectId: - '0xdf0dda3c4884be5e562f35b299dccd8bc4e468843197166b3fc87a93dd211055', - category: 'Utility', + '0x55bff36906b3e55bff995b4a7d73fd6651eeba4274ad49e269b29157bbf2fee2', + category: 'NFT', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5569,23 +5396,24 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'PORTERS', + name: '8 Bit Cats☑️', description: - "PORTERS is a developer-centric RPC gateway that offers fast and easy access to blockchain functionalities. PORTERS simplifies the creation and management of RPC endpoints for blockchain applications, allowing developers to focus on innovation without the hassle of backend complexities. PORTERS leverages the POKT Network's extensive node infrastructure, consisting of thousands of nodes globally, to provide its RPC services.", + '8-bit cats are NFTs produced with artificial intelligence. It is a successful nft collection that has reached 420 network interactions on the base network with its unique designs.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/d860e678-62c1-497e-880b-03339cb1387c.png', + 'https://storage.googleapis.com/op-atlas/a6bd06ef-a0bd-4aa1-be8e-00a211a6015b.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f508014c-f1e5-49b0-a284-63f0246da7f3.png', - project_socialLinks_website: "['https://porters.xyz']", - project_socialLinks_farcaster: "['https://warpcast.com/porters']", - project_socialLinks_twitter: 'https://x.com/PORTERSXYZ', + 'https://storage.googleapis.com/op-atlas/436760bb-94e6-4220-9102-b65ff5005758.png', + project_socialLinks_website: + "['https://element.market/collections/8-bit-cats-d4614f4b1']", + project_socialLinks_farcaster: "['@zeus199803']", + project_socialLinks_twitter: 'https://twitter.com/CiyiltepeE32442', project_socialLinks_mirror: '', - pricingModel: 'freemium', + pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Projects can access decentralized, unstoppable and high quality RPC services in Base and Optimism through Porters via the POKT Network.\\n\\nFurthermore, we have initiated native RPC markets in Optimism and Base through chain-specific payment for RPC services through the $PORTR token deployed on OP and Base.\\n \\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We enabled the POKT community to further decentralize their offering of RPC services for the Superchain and OP Stack by the development and operation of the PORTERS gateway. This fosters the integration and relevance of POKT for OP Stack builders.\\n\\nThrough the development of our Token Name Service API, we have enabled further growth and increased community engagement for the TKN DAO. It also enables the open source community around RaidGuild DAO to expedite the development of public goods projects in Base and Optimism.\\n\\nPORTERS also educates and empowers core impact infrastructure projects on the Superchain, such as Hypercerts, in DePIN RPC services for the provisioning of hypercerts to the public goods and Web3 community. Also highlighted by our ongoing efforts to enable Onchain Elephants to access resilient, censorship-resistant, and performant RPC services for funding the protection of elephants in Asia.\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'It was a very good welcome, I am happy with opstack, OPTIMISIM IS KING. We only had problems with block speeds in the infrastructure, the rest was pretty good. A slightly faster block technology update is a must for you.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'It was a very good welcome, I am happy with opstack, OPTIMISIM IS KING. We only had problems with block speeds in the infrastructure, the rest was pretty good. A slightly faster block technology update is a must for you.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5594,57 +5422,57 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xb9925193731f8998688d37bef30f6fa484e186c5b427c44ce8fa5e5ae609f326', + id: '0x5ae4c1508b793a092c32c06000735c31f36b35759f655b8644174ff2cbd7903c', applicationId: - '0xb9925193731f8998688d37bef30f6fa484e186c5b427c44ce8fa5e5ae609f326', + '0x5ae4c1508b793a092c32c06000735c31f36b35759f655b8644174ff2cbd7903c', projectId: - '0x6bd057da522918a4675396313ae33a2f2788a1ceeb3bd7ae228015e3eb317a7d', - category: 'Utility', + '0x679e661b67e85d937baace0bc56a6274dddfdffd8cce0e7232af86620d8d2ba4', + category: 'DeFi', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'wevm', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + organization_name: 'Blockchef', organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/d546477e-bfc2-4fb5-9ba1-e9624e94e608.png', + 'https://storage.googleapis.com/op-atlas/d0a1c9f9-1f0e-4e20-83f2-e2e4c55cc42a.png', organizationCoverImageUrl: '', socialLinks_website: [], socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['6143']", - name: 'Viem: TypeScript Tooling for OP Stack', + team: "['842471']", + name: 'Blockchef | Blockchain; From Farm to Fork', description: - 'Viem is the most used TypeScript Interface for Ethereum and the OP Stack. Viem provides robust, performant, and type-safe modules to be the foundation for building Web Applications, TypeScript Libraries, Wallets, Backends, Indexers, Scripts, and more, on top of Ethereum (and the OP Stack). With over 2.5 million monthly downloads, Viem is used in production by most at-scale (and small scale!) OP Stack projects like Optimism, Uniswap, Zora, Coinbase, Opensea, WalletConnect, Friend.tech, Rainbow, and so much more.', + 'The modern food supply chain is a complex web of interactions involving farmers, processors, distributors, retailers, and consumers.\n\nThis complexity often leads to inefficiencies, fraud, and a lack of transparency. Traditional supply chains are vulnerable to numerous issues, such as counterfeit products, where unscrupulous entities introduce fake or substandard items into the supply chain. This undermines consumer trust and compromises safety.\n\nBlockChef addresses the challenges in the area by utilizing blockchain technology to create an immutable, transparent, and secure ledger of every transaction and interaction in the food supply chain.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/171f60c2-1e3e-4b0a-998e-4015a7f468f7.png', + 'https://storage.googleapis.com/op-atlas/85d305c3-f250-4e81-b2eb-d228b5058020.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/64c06023-a910-4646-ba3e-81baa2d935dc.png', - project_socialLinks_website: "['https://viem.sh']", - project_socialLinks_farcaster: "['https://warpcast.com/wevm']", - project_socialLinks_twitter: 'https://x.com/wevm_dev', + 'https://storage.googleapis.com/op-atlas/972a1713-f830-4ae1-a1b1-cea0d72a3e61.png', + project_socialLinks_website: "['https://blockchef.io']", + project_socialLinks_farcaster: "['https://warpcast.com/blockchef']", + project_socialLinks_twitter: 'https://x.com/blockchefio', project_socialLinks_mirror: '', - pricingModel: 'free', + pricingModel: 'freemium', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': \"Viem is a TypeScript-based integration tool for the OP Stack that provides interfaces for Applications to interact with the OP Stack protocol. Since RetroPGF 3, Viem has added support for Actions & Utilities to facilitate Withdrawals, Deposits, and other functionalities for the OP Stack. On top of this, Viem has liased closely with Optimism Labs to:\\n- integrate OP Stack Withdrawals and Deposits into Viem\\n- deprecate the Optimism TypeScript SDK for OP Stack, and migrate consumers to Viem,\\n- update Viem's OP Stack integration for the Fault Proofs (and permissioned fallback) upgrades\\n- assist with writing of documentation of OP Stack integration with Viem\\n\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Consumers of OP Viem include:\\n- Uniswap\\n- Sushiswap \\n- Optimism Bridge\\n- Superbridge (OP Stack bridge)\\n- Brid.gg (OP Stack bridge)\\n- Stripe\\n- Shopify Blockchain\\n- friend.tech\\n- Coinbase\\n- Coinbase Bridge \\n- Zora\\n- mint.fun\\n- many more...', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': \"BlockChef aims to revolutionize the food supply chain by providing businesses with a transparent and efficient solution to track products from **farm to fork**. To achieve this, we are building a robust infrastructure powered by an OP Stack-based sequencer and network. This infrastructure will serve as the foundation for creating an immutable ledger that records every step of a product's journey.\\n\\nBy leveraging existing tools and blockchain technology, we will enable businesses to deploy and operate a chain that provides full traceability, security, and transparency. Our network will streamline processes, automate verification through smart contracts, and reduce inefficiencies, all while enhancing the user experience. This ensures businesses can easily track, verify, and authenticate their products, giving them and their customers complete peace of mind.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We are currently in the testing phase of our product and actively engaging in discussions with various suppliers, producers, and stakeholders within the food supply chain across Europe. Our goal is to attract potential customers by demonstrating the value of our solution. The power of the OP Stack and Superchain allows us to offer our clients a fully transparent, trustworthy, and easily traceable process. This ensures that every step in the supply chain is secure and verifiable.\\n\\nWhile we do not yet have public testimonials or data from active users, these ongoing negotiations are helping us build a strong list of potential clients who are interested in adopting our solution in the near future.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 156463.05, + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xbfd7b95f33e8c7a404c83f66590f3e39b05403211615887b0cd2dcd37cb9eea7', + id: '0x5d6b6bef33973adeaada0804d3fd860fad1c97ca612e6e96d38251cbf659cecc', applicationId: - '0xbfd7b95f33e8c7a404c83f66590f3e39b05403211615887b0cd2dcd37cb9eea7', + '0x5d6b6bef33973adeaada0804d3fd860fad1c97ca612e6e96d38251cbf659cecc', projectId: - '0x482720e73e91229b5f7d5e2d80a54eb8a722309c26dba03355359788b18f4373', + '0x43bb3210691d0a7fd15df10a5401020281f7ab57baa49a63225c5c262abc357d', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5654,66 +5482,66 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'RubyScore', + name: 'JEFE TOKEN', description: - 'RubyScore - decentralized on-chain ranking protocol that represents layer 2 segmentation on 10+ parameters and scores the performance of wallets on various parameters. Key features of the platform include a unique on-chain reputation system utilizing SBT, advanced analytics to evaluate 10+ network parameters, and a distinctive ranking system with NFT rewards. API offering, which will allow user wallets to be verified through RubyScore, as well as using the API for verification through other dApps.', + "JEFETOKEN is a software development project focused on smart contracts, blockchain technology, video games & mobile applications. Our goal is to create an ecosystem of web3 applications, based on our own token that powers our platforms and services. Additionally, we offer education through interactive workshops, both in-person and digital, to facilitate user integration into the blockchain ecosystem.\nBlockchain: The JEFE token is developed Open source under the MIT license, coded in Solidity and forms the foundation of the project, deployed on the mainnet in Optimism as $JEFE with the vision of being part of the SUPERCHAIN.\n\nApplication Development: We implement web3 activities within the community, promoting healthy competition through participation in educational workshops and learning activities on blockchain usage. All information is accessible to users from our website and with direct support on our social media channels. We have our own video game, Jefe Zombie, available on Android and iOS. This game introduces users to using their ERC-20 address to rank within the community and earn on-chain rewards, such as $JEFE & NFTs, and off-chain rewards, such as game appearances & accessories.\n\nCommunity Support: We also support community talent in areas like sports (American football and paintball), audiovisual art, helping artists transition to the web3 world, and e-sports, promoting competition and game streaming among users.\n\nJEFE University: We have JEFE University, a tour of presentations and workshops at universities about Optimism, blockchain & web3. We generate POAPs (Proof of Attendance Protocol) for attendees, promoting learning and knowledge sharing.\n\nRewards Program: We incentivize talent and user engagement within our ecosystem through a comprehensive rewards program, prominently featured on our website. Additionally, we're currently developing JEFE COMPASS, an innovative mobile Dapp where users can seamlessly monitor the global community ranking, organize activities, and track both on-chain and off-chain interactions from community addresses and VOTE for events, competitions, top players and more. By participating, users earn rewards points, enabling them to evolve their progress and level of their ranking within the community. \nThis program recurrently lists community activities that integrate web3, providing an access point to understand the use case of JEFE TOKEN. We act as a compass for navigating the web3 world, with a vision of a Superchain. Our utility is to support the transition from web2 to its integration with the Superchain in web3 interactively.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/598566b6-6d99-4476-a7a0-3842629b7d71.png', + 'https://storage.googleapis.com/op-atlas/b9e15e7a-8d23-4b25-83ab-88fc333c417f.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/b4311568-e6e6-4362-94d6-37af529d974c.png', - project_socialLinks_website: "['https://rubyscore.io/']", - project_socialLinks_farcaster: "['https://warpcast.com/rubyscore']", - project_socialLinks_twitter: 'https://twitter.com/rubyscore_io', - project_socialLinks_mirror: 'https://medium.com/@rubyscore.io', - pricingModel: 'freemium', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", + 'https://storage.googleapis.com/op-atlas/a5f679ab-f06a-401f-a73c-d93f27a2f9ee.png', + project_socialLinks_website: + "['https://jefetoken.com', 'https://rewards.jefetoken.com']", + project_socialLinks_farcaster: "['https://warpcast.com/jefetoken']", + project_socialLinks_twitter: 'https://x.com/JefeTOKEN', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'RubyScore core is built on Optimism and RubyScore also provides network and wallet metrics on a set of parameters. The RubyScore metrics dashboard includes such projects as Base, Zora, Mantle, opBNB, Blast, Manta built on OP-Stack, as well as Ethereum itself is integrated into the RubyScore metrics dashboard.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If RubyScore ceases to exist, it will have no critical impact, but users will be left without accurate metrics of networks built on OP-Stack and Ethereum, as well as viewing statistics of their wallet in these networks.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'Integrating an educative progress & development of a blockchain with the Op Stack brought challenges & improvements this new way to have impact in the use case of the Superchain with the tool developed kosotl (link on github repo) served as a quick reference for new users to deploy configure & test an op chain used in workshops in person & online expanding the use of the open source code at a collage level in our local community at a university teaching students & collaborating w/ professors for the development of a university blockchain experimenting a simplified route of what a decentralized system is & how to deploy, network & storage test with Optimism OPstack Open Source. This shared knowledge w/ the community simplified building the Superchain for free engaging w/updated studies groups that use these tools as art of their formation & with the bilingual research & development follow a constant documentation of the whole & how to overcome critical aspects of building an op chain', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'The approach was directly with the university Instituto Technologico Superior de San Luis Potosi in Mexico, professors, students & graduated, from the careers of technology & software engineers from different collage degrees learned the implementation of the layer 2 solutions of the open source op stack in workshops studying & in practice in creating a testnet blockchain the ability to configure it in simplified steps from the theory & in practice\\n\\nhttps://www.facebook.com/share/p/tZ6u1CoMo2CjUzhQ/\\n\\nhttps://www.facebook.com/alejandrocesar.ricomartinez/posts/pfbid02PhcgsnRqUAcbjTYty3TrgiQaHR1tEBveLnUwh94gpwFfAdBXHSkcfPCD5yTauTprl?rdid=VtwbRUyaP5uvnv99\\n\\nThis series of workshops motivated the public university directors to step forward in building & connect w/ the op blockchain for their academics & processes integrating it in their academic formation on students. Professors build, maintenance & update improvements of the Superchain blockchain built everybody all together\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 67.262, + grant_1_amount: 12422, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xc662f93196869bd6f0d5bff407c17482ad7670f83ef687dd994c20ff8abd67ae', + id: '0x6ad164877605c91d3182bcc0ba977f39c95fa48449884c001e85ab65a70355ef', applicationId: - '0xc662f93196869bd6f0d5bff407c17482ad7670f83ef687dd994c20ff8abd67ae', + '0x6ad164877605c91d3182bcc0ba977f39c95fa48449884c001e85ab65a70355ef', projectId: - '0xd97260a3e245900619162288374fe95a901e462c2429a44bea21ff68ad7c0174', - category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Consensus R&D', - organization_description: - 'The Consensus R&D team focuses on both short and long-term research and development projects that aim to improve Ethereum’s security, sustainability, and scalability while retaining strong decentralization. This includes proof-of-stake consensus design, crypto-economic mechanism design, software simulations and experiments, spec writing, security assessments, testing, and more.', + '0xd8012752e512ed8c6a47e61293bbad8cd942c9d016de1dc78d64d2248373444a', + category: 'NFT', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + organization_name: '', + organization_description: '', organizationAvatarUrl: '', organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], + socialLinks_website: '', + socialLinks_farcaster: '', socialLinks_twitter: '', socialLinks_mirror: '', - team: "['7717', '8521', '7236']", - name: 'Consensus R&D (Ethereum Research)', + team: '', + name: 'NFT Starter', description: - 'The Consensus R&D team focuses on both short and long-term research and development projects that aim to improve Ethereum’s security, sustainability, and scalability while retaining strong decentralization. This includes proof-of-stake consensus design, crypto-economic mechanism design, software simulations and experiments, spec writing, security assessments, testing, and more.\n\nHere are some of the projects and research directions that we have been involved with over the period covered by this RPGF round:\n\n- Inclusion lists: in the first half of 2024, an existing inclusion list proposal has been refined together with client teams, culminating in [EIP-7547](https://eips.ethereum.org/EIPS/eip-7547), which was for a time considered for inclusion in Electra. Though that has not transpired, the work on EIP-7547 has still informed our understanding of the inclusion list design space. Eventually, this work has led to further research on more distributed inclusion list mechanisms, such as [FOCIL](https://ethresear.ch/t/fork-choice-enforced-inclusion-lists-focil-a-simple-committee-based-inclusion-list-proposal/19870)\n\n- MaxEB: our team has greatly contributed to the development of the MaxEB proposal, both with [early research and security analysis](https://notes.ethereum.org/nHqON5l7SACkL_nPwz8Vqw) and with spec development. This has led to [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251), which has been included in the Electra fork. The MaxEB spec has meanwhile been incorporated in the [Electra spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/electra).\n\n- PeerDAS: research, spec writing and coordination of the development effort. Starting from last fall, many research posts have been written on the topic, culminating in the [PeerDAS spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/_features/eip7594) as a feature in the Ethereum consensus specifications, and with the corresponding [EIP-7594](https://eips.ethereum.org/EIPS/eip-7594) being considered for inclusion in the next fork. \n\n- Consensus protocol research: much research work has gone into the topic of Single Slot Finality, with papers, [ethresearch posts](https://ethresear.ch/t/orbit-ssf-solo-staking-friendly-validator-set-management-for-ssf/19928), [notes](https://vitalik.eth.limo/general/2024/06/30/epochslot.html) and a [wip high-level spec](https://github.com/fradamt/ssf) being worked on, among other things. \n\n- Staking economics: our team actively participates in research around staking economics and generally the future of staking.', + 'NFT STARTER is a platform designed to help creators, artists, and entrepreneurs launch their own NFT projects. It acts as a launchpad, providing the tools and resources to create and mint NFTs. Currently working on version 2.0', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0c2afd20-d954-478d-aaf5-db96fcb16ff6.png', + 'https://cdn.charmverse.io/user-content/d30a1da7-8e25-495b-9961-f332bcfc43a1/44113f51-1a0b-40cb-b5b1-f4cb5241d913/GDUQ_lQU_400x400.jpg', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/8788941d-7915-440e-8570-9e0f9926e374.png', - project_socialLinks_website: - "['https://github.com/ethereum/consensus-specs/']", + 'https://storage.googleapis.com/op-atlas/0f8ad22d-b07f-422a-a341-5c2d9df1e570.png', + project_socialLinks_website: "['https://nftstarter.lol/']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + project_socialLinks_twitter: 'Nftstarter', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Research which informs Ethereum core development']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Our team, and the various research and specification projects it is involved in, are one of the primary drivers of the first part of the Ethereum R&D pipeline. Besides the general dependency of the OP stack on Ethereum, we are also specifically quite involved in DA layer scaling work, which is crucial to allowing OP chains, and all rollups, to become amenable for all kinds of real world applications', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Unless other teams stepped in to fill some of the functions that we currently do, the OP stack would probably have to migrate to a different L1. We believe there is much work still to do on the core L1 protocol, without which Ethereum cannot continue to be the ideal place for rollups to settle.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'The NFT Launchpad is designed to simplify the process for artists to launch their NFT projects and make it easy for their supporters to mint these NFTs. By focusing on Layer 2 networks, the platform significantly reduces costs and enhances scalability, making NFT creation and distribution more accessible and efficient for a broader audience.\\n\\nImpact Statement: Our Launchpad democratizes access to the NFT space by reducing barriers for creators and collectors, enabling a more inclusive and thriving digital art ecosystem on Layer 2 networks.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'During 2023-24, several NFT collections were successfully launched on our platform. \\nThese collections were deployed across various chains, often coinciding with the launch of those chains’ mainnets. By doing so, we provided users with an opportunity to familiarize themselves with new networks and ecosystems from the outset, making our platform a key resource for early adopters and NFT enthusiasts alike.\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5722,41 +5550,41 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xcf3e15274565ac49b2d05237bceaa0c3d0b4d984691bbead7c724f0328fe452f', + id: '0x78986f716f24bdb7fcf0118096f80d83e8bed1970f8c9800f4543addefb00044', applicationId: - '0xcf3e15274565ac49b2d05237bceaa0c3d0b4d984691bbead7c724f0328fe452f', + '0x78986f716f24bdb7fcf0118096f80d83e8bed1970f8c9800f4543addefb00044', projectId: - '0xe88826f4dde8d4abaa647a68763a4826fbb446e977cc00017e63dde91556b48d', - category: 'Social', + '0x985a1ed485458d7c383c8b59a18856183197783883014c74b865468769436c52', + category: 'Governance', applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + organization_name: 'Optimism Unlimited', organization_description: '', - organizationAvatarUrl: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/bcfee716-1862-4879-8d86-de2215840a82.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: 'Hedgio Podcast', + team: "['5779', '844381']", + name: 'Retro Funding Site Design', description: - "We launched the Hedgio Podcast two months ago, and it’s quickly gaining momentum, with each episode attracting 2-3k listeners across various platforms. The podcast focuses on educating both beginners and professionals in blockchain and cryptocurrency. We cover in-depth topics such as OP Stack, Optimistic Rollups, and their impact on Ethereum's ecosystem. By addressing technical subjects and comparing blockchain technologies with traditional systems, we aim to bridge the knowledge gap, and our growing audience demonstrates the value and impact of our content on the crypto community.", + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/a00a360c-7b74-4fc9-896a-c6652df70ffb.png', + 'https://storage.googleapis.com/op-atlas/729b2f2b-25ac-4668-a715-61b0471e025a.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/9be7d3fa-efda-4100-a238-8aaefa1dac95.png', - project_socialLinks_website: - "['https://open.spotify.com/show/29qTM8M07UYM5QveEEvuDQ']", + 'https://storage.googleapis.com/op-atlas/dfec054e-366f-4db0-8603-372f715d012f.png', + project_socialLinks_website: [], project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/hedgio_fa', + project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'We are developing a platform that enables individuals to engage with cutting-edge blockchain technologies. Our mission is to bridge the knowledge gap by offering resources and tools that educate users on the most up-to-date advancements in the space. A primary focus of this platform has been Optimism and the OP Stack, which we’ve consistently highlighted as a key technology. To facilitate this, we organize sessions with well-known experts in the blockchain industry, where they introduce and demonstrate the latest tools within the OP Stack. These sessions not only serve to inform but also empower users to deploy and operate solutions using OP technology. By prioritizing Optimism’s infrastructure, we aim to create an accessible learning environment that accelerates innovation and adoption in the blockchain space. Through our content and expert-led discussions, participants can stay current with evolving tools and leverage them for testing, deployment, and scaling their projects.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our podcast has a large Persian-speaking audience, spanning countries like Tajikistan, Iran, and Afghanistan. You can verify this through our active presence on Twitter, Telegram, and various podcast platforms. Many listeners benefit from the information we provide, especially on blockchain and OP Stack technologies. If needed, we can shift our focus even more toward unique aspects of Optimism and OP Stack, ensuring deeper engagement. With sufficient support, we also have the technical capability to develop an interactive platform, similar to coding challenge platforms or online courses, where users can onboard quickly into the Optimism ecosystem. This platform would guide users through OP Stack concepts, enabling them to actively participate and contribute to the community. Such a tool would not only educate but also empower developers to use Optimism’s infrastructure effectively.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5765,101 +5593,102 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xd261ecf2a0de917337ca2256a45c6c898dbfb1bd6f3a1486276cad0055843913', + id: '0x7a43c1fa89ef5c1230765dd34d7d27c29f9ccf3c9853d8523bb5afda7af05d48', applicationId: - '0xd261ecf2a0de917337ca2256a45c6c898dbfb1bd6f3a1486276cad0055843913', + '0x7a43c1fa89ef5c1230765dd34d7d27c29f9ccf3c9853d8523bb5afda7af05d48', projectId: - '0xa17b3d5e5ef47fe50e56d9fea3c4c90e72b0c9127b8eab54058e5ca82111378c', + '0xbe557cceb3d7b0d8827a4e62066c9ea53eb1f2da775437aa5c78c193735e872e', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'ethPandaOps', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + organization_name: 'Syndicate', organization_description: - 'We are a team of DevOps engineers at the Ethereum Foundation dedicated to coordinating and testing Ethereum protocol upgrades. Our mission is to build reusable tools for the entire ecosystem, with a focus on enhancing the deployment and testing stack of Ethereum. We manage the deployment, maintenance, and testing of upcoming upgrades through devnets, working closely with Ethereum client teams to identify and resolve bugs.\n\nIn addition to testing, we actively collect and monitor data from the Ethereum mainnet and testnets to detect anomalies and gain research insights. This data stack provides valuable insights into the network’s state and lays the groundwork for future, data-driven upgrades.\n\nRecently, we have expanded our efforts to include Layer 2 (L2) support for the automation tools we use on L1. This initiative aims to facilitate easier interoperability and accelerate testing processes.', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/79ddd288-f60d-4985-ae21-dfa433d92472.png', + 'Syndicate helps companies build high-performance communities on-chain through our products such as Transaction Cloud, our work with L3s, and the Metabased initiative.', + organizationAvatarUrl: '', organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/fbab7e54-5168-4c5f-9a1e-6dd29bfec921.png', - socialLinks_website: "['https://ethpandaops.io']", - socialLinks_farcaster: "['https://warpcast.com/ethpandaops']", - socialLinks_twitter: 'https://x.com/ethPandaOps', + 'https://storage.googleapis.com/op-atlas/2eeefee4-8cfd-49e6-b452-fbd951d355a4.png', + socialLinks_website: "['syndicate.io']", + socialLinks_farcaster: "['https://warpcast.com/syndicate']", + socialLinks_twitter: 'https://x.com/syndicateio', socialLinks_mirror: '', - team: "['840195', '212735', '843933', '11652', '840686', '811515', '212493']", - name: 'Ethereum devnets and testing tools', + team: "['2987']", + name: 'Mirror', description: - 'As a team, we focus on Ethereum testing and protocol upgrades. In order to do this well, We build and maintain many projects that help ship Ethereum upgrades safely and quickly. A full list of our open-source tools can be found on our website at https://ethpandaops.io/projects/.\n\nOne of the major projects the team undertakes is supporting Ethereum hardforks with devnets. Devnets are fully-fledged Ethereum networks that we use for testing new features. We have infrastructure tooling that makes it possible to run a local devnet on your machine. For more intricate tests and networks, we also provide tools to deploy nodes across multiple remote servers. All of these networks come with tools to analyze, test, and debug them. Devnets help Ethereum core developers to make their clients more reliable by identifying issues before they happen on Ethereum mainnet.', + 'Syndicate helps companies build high-performance communities on-chain through our products such as Transaction Cloud, our work with L3s, and the Metabased initiative. Mirror is our project that allows you to listen to offchain events or poll offchain resources & mirror that data to other chains.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0be4f6a2-ff4f-4681-a888-8abeb659bfd3.png', + 'https://storage.googleapis.com/op-atlas/f7fc289b-8ff6-4e14-82af-992103f6cd3f.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/dabbf4f6-1a92-4562-a563-7a5749c055ef.png', - project_socialLinks_website: "['https://ethpandaops.io']", - project_socialLinks_farcaster: "['https://warpcast.com/ethpandaops']", - project_socialLinks_twitter: 'https://x.com/ethpandaops', + 'https://storage.googleapis.com/op-atlas/cec5a3ac-03d9-4336-bc2e-28f41d10046c.png', + project_socialLinks_website: "['https://syndicate.io']", + project_socialLinks_farcaster: "['https://warpcast.com/syndicate']", + project_socialLinks_twitter: 'https://x.com/syndicateio', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Ethereum test networks', 'Infrastructure to test and deploy chains', 'Research which informs Ethereum core development']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'The Ethereum devnets and tooling that we build help speed up the delivery of forks on mainnet. These tools were instrumental to testing and analysing Ethereum mainnet helping lead to the chosen blob target and max for the Dencun fork, which subsequently aided the OP-stack by reducing the cost of operations. The analysis tools additionally help us monitor the health of Ethereum, which directly contributes to decisions we make about scaling the L1. ', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Since a lot of the tools are used by Core developers to test and ship forks, it would directly impact their ability to do so or increase the amount of friction they need to go through. Core dev friction directly correlates to the stability of the L1 chain as well as ability to ship future forks. These shifts would negatively impact the OP stacks operations. ', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': \"Syndicate's Transaction Cloud, SmartRPC and L3 tooling have boosted the surface area of the OP-stack by allowing high-performance L3s and app chains to be built on the Superchain, for specific use cases. We are constantly helping our partner companies, and the ecosystem at large, explore use cases that merge the security and stability of L2s with the customizability offered by L3s.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We have fully deployed [HAM Chain](https://medium.com/@hamlabs/announcing-ham-chain-5597a1082769), [Degen Chain](https://syndicate.io/blog/degen-chain), the [Frame API on Warpcast](https://frame.syndicate.io) and worked with partners such as Nike on their [.SWOOSH initiative](https://twitter.com/syndicateio/status/1592280354089365505?s=61).', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 'under-1m', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xdacaf56aab0be9368356fa9bf036b5e0499ed3b8f4e04f0a826281e2939e7d06', + id: '0x7ffef9193c8275ba48b509796eb678d7cfecc4851d54ceae1cc3d688f35658ad', applicationId: - '0xdacaf56aab0be9368356fa9bf036b5e0499ed3b8f4e04f0a826281e2939e7d06', + '0x7ffef9193c8275ba48b509796eb678d7cfecc4851d54ceae1cc3d688f35658ad', projectId: - '0x356eee43066d2e12c46f06eb710b8d33d6655db061cb3b24d7a38433f228a45b', - category: 'NFT', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', + '0x4d926f7d302cbb95fe37487892a49b0b6240601e3a84023f8a1518678d6e6dbe', + category: 'Utility', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + organization_name: 'DappLearning', + organization_description: + "We are designed for developers to step into blockchain DAPP development, where they can learn DeFi, CRYPTO, NFT, DAO projects. We are only focus on Ethereum and Layer2. \n\nour vision:\n\nWe hope we could not only give junior developers a feasible and easy-to-use **blockchain Dapp learning roadmap**, but also present advanced developers with a platform for **communication and cooperation**.\n\nWhat We Have Done\n\n- We maintain a widely acclaimed open-source web3 development tutorial on GitHub, covering the fundamentals of web3 development, in-depth analysis of DeFi, CRYPTO, DAO,blockchain architecture and more. The Basic tasks enable beginners to get the hang of web3 basics through coding examples, while the Project task section delves in to the architecture and processes of classic projects and dissects the key logic within the code。\n- Adhering to the concept of the open-source university, we regularly hold online tech-sharing sessions (typically once a week), with over 180 deep dives into hard-core technical topics. They're all up on platforms like YouTube and Bilibili for people to catch up on. For critical technologies or topics, we have organized several lecture series, such as DeFi series, ZK Series Courses, Optimism, Starknet, Scroll, UniswapV3, Account Abstraction, etc. Excellent presenters would receive a 160 DAI reward provided by the community funding pool.\n- We have a special team to translate influential English courses or articles into Chinese, making them accessible to a broader range of Chinese developers. To help learners understand the entire web3 industry's context and improve systemic cognition, we have organized the content of MIT 15.S12 Blockchain and Money (Prof. Gary Gensler) video course and translated it into Chinese version course notes.\n- We've built a community system using Ethereum Address as an identity marker, offering platforms for hiring and bounties alongside practical web3 tools like Redpacket and Airdrop, etc., on which we support layer2 (Optimism, Arbitrum one, scroll, zkSync Era, etc). We're continuously enhancing our community features with the goal of providing an enriched experience for our developers. We aim to foster learning, facilitate collaboration, and unlock new opportunities within the community.\n- We adhere to a DAO governance, decentralized, with global contributors, voting on significant community .", + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/9502c952-cc56-455a-9497-0b7d763421f4.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + socialLinks_website: "['https://dapplearning.org/']", + socialLinks_farcaster: [], + socialLinks_twitter: 'https://x.com/Dapp_learning', socialLinks_mirror: '', - team: '', - name: 'Mysth NFT', + team: "['516941', '617880', '517069']", + name: '[DappLearning] Web3 Development Tutorial', description: - 'NFT works based on block Chain with a collection of Myth Canvas', + 'DappLearning is the definitive guide to decentralized application (Dapp) development on blockchain technology. It offers step-by-step practical experience through classic projects. The GitHub repository has garnered over 5K stars. The OP Stack is a crucial component of this guide, and we have meticulously designed relevant experiments, as well as compiled a rich list of reference materials for those who wish to learn. Additionally, we organized two online OP Stack sharing sessions and uploaded the related videos to YouTube, which have received nearly 1K views. \nOur tutorial not only assists Mandarin-speaking developers in Mainland China but also extends its reach to support developers in regions such as Hong Kong, Singapore, Malaysia, and beyond.\n\nOP stack tutorial (docs + video course): \nhttps://github.com/Dapp-Learning-DAO/Dapp-Learning/blob/main/basic/28-optimism-layer2/README.md\nhttps://www.youtube.com/playlist?list=PLgPVMJY4tnFNXwnStKiI9FZ9cV-OqgZMT', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/25d67767-622f-4a1b-b62c-4bdadc9e145b.png', + 'https://storage.googleapis.com/op-atlas/8edaf178-239d-4396-85f0-15b9a13eff91.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/e90d87d2-aac9-46f3-90bf-3708f4e30807.png', - project_socialLinks_website: - "['https://opensea.io/0x8Df4e551cC464492eF7858256e57A57006D338e5']", - project_socialLinks_farcaster: "['https://warpcast.com/0xethl2']", - project_socialLinks_twitter: 'https://x.com/Hula_ardi', + 'https://storage.googleapis.com/op-atlas/23f1881a-a148-4a96-b974-97e0a4016d0b.png', + project_socialLinks_website: "['https://dapplearning.org/']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'https://x.com/Dapp_learning', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Keep support lokal pride jangan lupa makan nasi goreng french fries RM Padang Panjang yang telah berpartisipasi mengikuti kuis Kak Joewita kau tak pernah menjadi planet Neptunus memiliki tubuh dan dapat menyebabkan', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'A will be fans artistik shoujo bola jd ha depe instan kondisi uang tunai bekasi barat dan familia Cerambycidae cek ya kak Ega telah ditebang KONTLOTLDN jadi orang yang telah berpartisipasi dalam bahasa', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'DappLearning is the definitive guide to decentralized application (Dapp) development on blockchain technology. It offers step-by-step practical experience through classic projects. The GitHub repository has garnered over 5K stars. The OP Stack is a crucial component of this guide, and we have meticulously designed relevant experiments, as well as compiled a rich list of reference materials for those who wish to learn. Additionally, we organized two online OP Stack sharing sessions and uploaded the related videos to YouTube, which have received nearly 1K views. \\nOur tutorial not only assists Mandarin-speaking developers in Mainland China but also extends its reach to support developers in regions such as Hong Kong, Singapore, Malaysia, and beyond.\\n\\nOP stack tutorial (docs + video course): \\nhttps://github.com/Dapp-Learning-DAO/Dapp-Learning/blob/main/basic/28-optimism-layer2/README.md\\nhttps://www.youtube.com/playlist?list=PLgPVMJY4tnFNXwnStKiI9FZ9cV-OqgZMT\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our development tutorials have reached thousands of developers, with the OP Stack-related tutorials being particularly popular. To date, our GitHub repository has garnered over 5K stars, and our YouTube channel has surpassed 5K subscribers, making it highly influential in the Asia-Pacific region.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 'under-1m', + grant_1_amount: 21600, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xdad31a9e6fb92128c654b6c86b9d9ef3ec4aaf13b36bb0efc374ed8de0a7b759', + id: '0x8c91a04b486ae88eee274a3a447c199598ee33c2e79bf97d353a1335d694bf54', applicationId: - '0xdad31a9e6fb92128c654b6c86b9d9ef3ec4aaf13b36bb0efc374ed8de0a7b759', + '0x8c91a04b486ae88eee274a3a447c199598ee33c2e79bf97d353a1335d694bf54', projectId: - '0x20b1e383963c6d8c3aad208dd5b90b27462a47f9835d567ed44137ade1b5cb45', + '0x6d30328dd0e058bdd4c55c51d5f785268770040a66edbd2830902c4d87efee9c', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', - 'PW subcategory': 'OP_STACK_TOOLING', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -5869,107 +5698,112 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'MetaCRM', + name: 'Clear Wallet', description: - 'MetaCRM provides a suite of innovative software solutions empowering marketing efficiency & personalized customer service for Web3 businesses.', + 'Clear EVM wallet is a fully open-source EVM browser wallet based on Ethers, Ionic, Manifest V3, and Vue. It implements Metamask API and will work as a replacement for Metamask, websites will detect it as Metamask, so select Metamask when interacting with Dapps. Websites that implement EIP-6963 will detect it as Clear EVM Wallet.\n\nIt has been public on Chrome Store since August 2022.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/f3d4c02b-2511-4026-a886-1b74a7a4c206.png', + 'https://storage.googleapis.com/op-atlas/4aa97110-63e2-4703-a3f5-e42bdebceaee.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/1d6693d9-6b5e-489e-83dc-c4416f78ca93.png', - project_socialLinks_website: "['https://metacrm.inc/#/']", - project_socialLinks_farcaster: "['https://warpcast.com/metacrm']", - project_socialLinks_twitter: 'https://x.com/metacrm_inc', - project_socialLinks_mirror: '', - pricingModel: 'freemium', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', - impactStatement_subcategory: "['Ethereum client implementations']", + 'https://storage.googleapis.com/op-atlas/50e95639-885c-4657-8141-4a3357fd732e.png', + project_socialLinks_website: "['https://clear-wallet.flashsoft.eu/']", + project_socialLinks_farcaster: "['andrei0x309', 'clearwallet']", + project_socialLinks_twitter: 'andrei0x309', + project_socialLinks_mirror: 'https://mirror.xyz/andrei0x309.eth', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'MetaCRM offers a suite of innovative software solutions that enhance marketing efficiency and deliver personalized customer service designed for Web3 projects and the Optimism ecosystem. By providing these tailored tools, MetaCRM supports the OP Stack by enabling projects to optimize their user engagement and growth strategies, ultimately contributing to the overall success and scalability of the ecosystem.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'If our project were to cease to exist, it would leave a significant gap in the Optimism ecosystem. Currently, there are no comprehensive, all-in-one solutions that are natively built with blockchain compatibility for customer support and user growth. This would be a setback for projects looking to thrive within the Optimism ecosystem.\\n\\nMoreover, two of the core goals of the Optimism Foundation are to ensure that end-users have an excellent user experience and that projects have access to the necessary tools to succeed. Our project directly addresses these objectives by providing valuable solutions, so our absence would create a substantial challenge for the entire Optimism ecosystem.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'Is very developer friendly has advanced features for devs like direct writing and reading from contracts, very rapid switching between accounts, is open-source, super private no analytics no trackers, has OP stack in template network both OP chain and Base chain.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': '- Chrome users that have downloaded tested and used the extension. ( current active users 200, a few thousand over the years)\\n- Users that have used code from the GitHub repository.\\n- Users that have built and used extensions from source ( unknown number)\\n- Farcaster users that have used it to SIWF on desktop and log in on warpcast.com\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '1m-5m', + grant_1_amount: '', 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xdbbddc9ceafb415395bc0d139c894428ddd3b53a94f459868d1ffcd86a8a0637', + id: '0x99c7f0d5f0463118627b633d3e0f0a2354544ee285d77569cded515bfbeadd18', applicationId: - '0xdbbddc9ceafb415395bc0d139c894428ddd3b53a94f459868d1ffcd86a8a0637', + '0x99c7f0d5f0463118627b633d3e0f0a2354544ee285d77569cded515bfbeadd18', projectId: - '0x1335476de5a24573f3fa1297827fbeb02921948d678b399c7367fb956d08a6cc', - category: 'NFT', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + '0xf2a60464d2a56fb47d2f8c13001edea71eda11ffd8fffec5f559495c6a5878d4', + category: 'Cross Chain', + applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', + organization_name: 'Unruggable', organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/ed676837-e1eb-45df-9066-2eb6eedb52e0.png', + organizationCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/82442bd0-9394-450a-a95e-e5ad0761755a.png', + socialLinks_website: "['https://unruggable.com/']", + socialLinks_farcaster: "['https://warpcast.com/unruggable']", + socialLinks_twitter: 'https://x.com/unruggable_eth', socialLinks_mirror: '', - team: '', - name: 'Opstack For Cats Dream ☑️', + team: "['841173', '9778', '12956']", + name: 'Unruggable', description: - 'I am a builder who deals with the production of nft in all L2s. I create my NFTs with artificial intelligence. I think my imaginary collection of cats is worthy of receiving an award on optimism.', + "Unruggable is focused on building the next generation of blockchain-based naming services. Our mission is to create secure and user-friendly solutions that enable projects and Layer 2 networks to establish their own naming systems using the Ethereum Name Service (ENS). As part of our commitment to open-source software development, we provide essential infrastructure that allows everyone to benefit from the scaling of ENS and L2 blockchains:\n\n'Unruggable Gateways' is an open source codebase that implements a complete solution for fetching proofs of data from rollup chains and verifying that data on Layer 1 Ethereum. We operate our own gateways using the codebase and are committed to supporting the trustless resolution of ENS names.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/aaff6a85-cd3e-4066-8f03-f09359b3a900.png', + 'https://storage.googleapis.com/op-atlas/ff2964ec-4435-4cf8-b993-e16f49b47b96.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/318a51e5-edfa-4564-8937-8508d3041a72.png', - project_socialLinks_website: - "['https://element.market/collections/opstack-for-cats-dream']", - project_socialLinks_farcaster: "['@zeus199803']", - project_socialLinks_twitter: 'https://twitter.com/CiyiltepeE32442', + 'https://storage.googleapis.com/op-atlas/49cf8f2c-bea6-4a22-bd7f-75a65138bd71.png', + project_socialLinks_website: "['https://unruggable.com/']", + project_socialLinks_farcaster: "['https://warpcast.com/unruggable.eth']", + project_socialLinks_twitter: 'https://x.com/unruggable_eth', project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Languages which are dedicated to developing smart contracts']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'My project name directly includes Opstack. This is a project that advertises you in your weak NFT market. First of all, instead of dealing with coding etc., increase your TPS rate by activating your NFT market. At this rate, you will be a ghostchain, not a superchain.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'Your NFT market will be completely finished and you will turn into a nonsensical network with no color. As we try to be with you with our projects, you are giving grants to many projects that do not need them and that already receive grants. I wonder if you are making yourself rich under the name of grant distribution. I will investigate this.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', + "[{'answer': 'Our `OPFaultVerifier` and `OPVerifier` contracts (deployed on L1) allow for the provable verification of any data stored on an OP Stack chain on L1. This includes both chains that do and do not implement fault proofs. Implementors can utilise our simple, well documented public API ([Unruggable Gateway Documentation](https://gateway-docs.unruggable.com)) to write smart contracts that utilise the power of [ERC-3668](https://eips.ethereum.org/EIPS/eip-3668) (CCIP Read) to trustlessly fetch data from OP stack chains. This significantly improves interoperability, and lowers the barrier to entry for working with the Optimism ecosystem.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'One example of our tooling in action is with NameSpace, a subname management platform that enables users to create subnames on Base using their ENS name. In a recent [forum post](https://gov.optimism.io/t/namespace-builder-grant-update-season-5-cycle-19/8794), they detailed their setup, which includes the use of Unruggable’s tooling.\\n\\nUnruggable’s tooling \"makes it possible to have fully verified ENS subnames by using proofs,\" ensuring that each subname is verifiable and secure. \\n\\nThe ability to leverage Unruggable’s system for fully verified subnames is a key advancement, providing enhanced trust and reliability to users managing their subnames within the ENS ecosystem.\\n\\n[opdemo.eth](https://discuss.ens.domains/t/ens-dao-newsletter-64-07-02-24/19354#new-optimistic-fault-proof-gateway-launched-34), which demonstrates resolving ENS names from the Optimism mainnet using fully proven resolution, showcasing secure and verifiable name resolution across L2 networks.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: 'foundation-mission', + grant_1_link: + 'https://gov.optimism.io/t/cycle-19-final-grants-roundup/7850', + grant_1_amount: 60000, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xde58eb0c8a9a29596b86be117d3f289e43aad908796d64e1da00712e769bf82e', + id: '0x99e3bf049a80e9eab20de707bf5d328175e1f45b8e3152d3838e40b6394ceff7', applicationId: - '0xde58eb0c8a9a29596b86be117d3f289e43aad908796d64e1da00712e769bf82e', + '0x99e3bf049a80e9eab20de707bf5d328175e1f45b8e3152d3838e40b6394ceff7', projectId: - '0x3060f55f50773c14b116537afebf8fa9f934664d022084f644f387e3d8e507bb', + '0x7348ae42266ff626319e8ea5398343b847603b3cc7101b03d8e4fb2b75ea8db3', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Tokenomics', + organization_name: 'Runtime Verification', organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/4b6f5412-22cb-4e2d-8030-f1e7d1ccaad1.png', + 'https://storage.googleapis.com/op-atlas/44b30b3b-2bce-456e-be10-a04eabce257d.png', organizationCoverImageUrl: '', socialLinks_website: [], socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: "['373516']", - name: 'Tokenomics Mechanism Research', - description: 'Research and Develop new tokenomics models', + team: "['465226']", + name: 'Kontrol - formal verification tool based on Foundry and KEVM', + description: + 'Runtime Verification has been at the forefront of open-source formal verification tools for more than a decade. Our generalistic approach allows us to use our technology on multiple blockchains. While KEVM offers our verification infrastructure to all EVM-based smart contracts, Kontrol greatly reduces the barrier to entry to formal verification for Solidity smart contracts.\nOur tooling is completely open source and freely accessible to all developers of the Optimism ecosystem at no additional cost.\n\nKEVM is an EVM executable formal semantics written in the K framework. KEVM passes all Ethereum conformance tests and is the entry point for formally verifying smart contracts with the K framework. However, using plain KEVM requires ad-hoc training on the K framework to write specifications. Additionally, these specifications can be quite verbose, increasing the difficulty of writing them.\n\nKontrol solves this by allowing developers to write the formal specification of their smart contracts directly as Foundry property tests. These tests are automatically translated into KEVM specifications, keeping all the verification guarantees whilst allowing for a much more easy developer experience.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/fa9260a3-49ff-4ea4-aba5-efb946b96d24.png', + 'https://storage.googleapis.com/op-atlas/fedec4f8-1b92-4e5c-a717-59258b0dd2ba.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/a5b446ae-c554-431f-8d24-d9d873d030e3.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', + 'https://storage.googleapis.com/op-atlas/e0035388-4b23-4215-98e3-c96e712cc18c.png', + project_socialLinks_website: + "['https://runtimeverification.com/', 'https://kontrol.runtimeverification.com/']", + project_socialLinks_farcaster: "['https://warpcast.com/rv-inc']", + project_socialLinks_twitter: 'https://x.com/rv_inc', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Research which informs Ethereum core development']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Increasing effectiveness and efficiency of token distribution algorithms. Producing research relevant to retro PGF distribution algorithms, reputation, and incentivizing contributors to participate more frequently in the development of OP Stack.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': \"The OP Stack will continue to develop and thrive. Other tokenomics experts will continue to produce more mechanisms and research that improve the OP Stack tokenomics and incentives. The research I've published so far may influence future research.\", 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'The infrastructure we built, centred around Kontrol, has greatly facilitated the testing, deployment, and operation of OP chains by integrating formal verification directly into the CI pipeline. Kontrol automates the verification of critical properties, such as the L1 pausability mechanism, ensuring that every code change is rigorously tested before deployment. This continuous and automated testing reduces the likelihood of vulnerabilities making it to production, enhancing the overall security and reliability of the OP chains. By catching issues early in the development process, Kontrol accelerates deployment cycles and ensures that the operation of OP chains remains robust and secure, ultimately supporting a more resilient and dependable Optimism ecosystem.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': \"OP Labs is one of the biggest users of Kontrol. Here's Matt's feedback on our work with Optimism: https://x.com/msolomon44/status/1828523849832612016\\n\\nWonderland team is also actively using Kontrol to test the interoperability mechanism that the Optimism team recently introduced. We are helping them out in the dedicated channel on the Optimism Protocol R&D server. We've conducted a Kontrol intro workshop for their team and here are the demo tests we've used: https://github.com/runtimeverification/kontrol-demo/pull/20 \\n\", 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -5978,13 +5812,13 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xde61c4ad48fd0a8e1e783490aeab9e2d8aa05aaeba1c619e3d520f7e277e461e', + id: '0xa65ce0321eca02b484622525733d9e5d1ebe01618c901125cca9ec3f84900916', applicationId: - '0xde61c4ad48fd0a8e1e783490aeab9e2d8aa05aaeba1c619e3d520f7e277e461e', + '0xa65ce0321eca02b484622525733d9e5d1ebe01618c901125cca9ec3f84900916', projectId: - '0x853976b3804833ac5e65592a308ee871f6f38038d25bc6f4dac4a63892c09c5f', - category: 'Utility', - applicationCategory: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + '0x1480383a90f1ab95cfedee6ea130dca700e5236eceb7dcf3f08a0e96b43c90aa', + category: 'NFT', + applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', @@ -5995,24 +5829,24 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'Cryptofuzz', + name: 'MonstersOnBase', description: - 'Differential fuzzing to find bugs in cryptographic libraries.\n\nHundreds of bugs found in major cryptographic libraries. Runs 24/7 on Google OSS-Fuzz.\n\nBug list: https://github.com/guidovranken/cryptofuzz?tab=readme-ov-file#bugs-found-by-cryptofuzz\nLibrary support: https://github.com/guidovranken/cryptofuzz/tree/master/modules', + "Hello, I am a designer. I am an artificial intelligence designer. I am 25 years old. I'm from Turkey. I need some support. I want to do more for Optimisim. I don't know much about Github. But everything I did here is as you want. I increased the on-chain activity and interacted with 420 wallets.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/6215ed53-5260-4d95-8d45-7978686135cd.png', + 'https://storage.googleapis.com/op-atlas/ef7bc6d3-c915-4390-9d7f-f781d6f7fea3.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f5499378-c7bf-480d-8fbc-6ef4ec5d0856.png', + 'https://storage.googleapis.com/op-atlas/6cf81b2e-43b7-4645-ab66-39f71cb1132b.png', project_socialLinks_website: - "['https://github.com/guidovranken/cryptofuzz']", + "['https://element.market/collections/monstersonbase']", project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_RESEARCH_AND_DEVELOPMENT', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Security audits specifically on the OP Stack or its components.']", + "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': '24/7 differential fuzzing of libsecp256k1, gnark, blst, golang cryptography and integer arithmetic. No relevant bugs were found within this specific time period, though previous findings include:\\n\\n- Various blst bugs (used by kzg) (e.g. https://github.com/supranational/blst/security/advisories/GHSA-x279-68rr-jp4p, https://github.com/search?q=repo%3Asupranational%2Fblst+vranken&type=commits)\\n- Two Go P256 scalar multiplication bugs (used by the P256 precompile) (CVE-2023-24532, Golang Github issue 60717, CVE-2022-23806)', 'question': 'How has your project advanced the development of the OP Stack?'}, {'answer': \"Every direct or indirect user of the OP stack has benefited from my work on the OP Stack. This broad impact stems from the nature of my research, which focuses on validating the security properties of components that are fundamental to the OP stack's operation.\", 'question': 'Who has benefited the most from your work on the OP Stack and how?'}]", + "[{'answer': \"My NFT collection enabled the testing, distribution and operation of OP chains with its sales and interactions. NFT collections with artificial intelligence content attracted people's attention and gained interaction.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our tools were used by superchain users, which gave them easy access to the cheap and accessible nft side. They accessed and purchased the first AI-powered nft collections.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -6021,12 +5855,12 @@ export const projects = [ }, { isSelected: 'Rejected', - id: '0xde7b3a40765064191246ddb590967ba43e97fc31c4a5c7359438c7ee72bb622c', + id: '0xa6d24467fee1f912ca1e3fd6c5b37578b57ebcf5e10a3eac75a6ea43bfcc2d49', applicationId: - '0xde7b3a40765064191246ddb590967ba43e97fc31c4a5c7359438c7ee72bb622c', + '0xa6d24467fee1f912ca1e3fd6c5b37578b57ebcf5e10a3eac75a6ea43bfcc2d49', projectId: - '0xd7a8e115b2b3772d7d5656d7798e349dcdedf2463302c78528c9e9686ab4efe3', - category: 'NFT', + '0x522e410dc5c49ce03c9babaa1dd3f97b042e3bd25c4da22c0a484a2992ac2ac0', + category: 'Utility', applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', @@ -6038,119 +5872,285 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: 'OmniHub', + name: 'GasHawk', description: - 'OmniHub NFT launchpad invites you to explore the boundless realms of creativity. Create your own collection in just a few clicks. This is where the future of art is born.', + 'GasHawk makes living onchain more efficient, safe, and secure. We’ve started with a service that saves retail and institutional clients up to 95% on transaction fees by accepting signed TXs and time sensitivities from users and executing in the optimal block during that window', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/98782a35-819f-4d02-a2dd-9e0156308b63.png', + 'https://storage.googleapis.com/op-atlas/8c78ad33-fb6f-432e-8530-b9c889bfc3d3.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/197fe561-4691-45ed-806f-60ca9851859f.png', - project_socialLinks_website: - "['https://launchpad.omnihub.xyz/', 'https://omnihub.xyz/']", - project_socialLinks_farcaster: "['https://warpcast.com/omnihub']", - project_socialLinks_twitter: 'https://x.com/omni_hub', - project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', + 'https://storage.googleapis.com/op-atlas/5ccb2584-6344-48bb-85a0-2c2d0e41d2d3.png', + project_socialLinks_website: "['https://www.gashawk.io/']", + project_socialLinks_farcaster: "['https://warpcast.com/dhannum8']", + project_socialLinks_twitter: 'https://x.com/gashawkio', + project_socialLinks_mirror: 'https://dhannum8.mirror.xyz/', + pricingModel: 'freemium', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'OmniHub NFT Launchpad infrastructure streamlines the testing, deployment, and operation of NFTs on Optimistic (OP) chains, making the process simple and efficient for creators.\\n\\nOmniHub NFT Launchpad provide scalable deployment, allowing NFT collections to be launched on OP chains with ease. Integrated testing environments let creators identify and fix issues before going live. Our AI-driven optimization enhances both performance and security. The automated deployment pipeline reduces errors and accelerates launches. Continuous monitoring ensures NFTs remain secure and operational post-deployment.\\n\\nThis allows creators to focus on their art while we manage the technical complexities of OP chain deployment.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'OmniHub NFT Launchpad opens the door to a world where everyone can unlock the full potential of NFTs. With its unique features, it transforms the traditional launchpad experience into an accessible, inviting users to explore and capitalize on the boundless possibilities within the NFT launchpad by OmniHub.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'GasHawk provides a non custodial, automated, transaction manager focused on making any interaction onchain more safe, efficient, and secure. We provide multiple services that can be used by end users, contract deployers, institutions and projects building on ETH mainnet, OP, Base and Sepolia. GasHawk enables developers to cheaply and securely deploy/interact with dapps, driving considerable value to the Optimism ecosystem, help retain projects and developers, and unlock new application designs. GasHawk allows developers and users to transact/deploy on chain at any time and level of volatility, with confidence that they will get the best transaction fee available on chain, within their chosen time frame. GasHawk has also provided research and implementation into Optimisms Sequencer Address which shows we can save Optimism millions per year. We are now researching a blob based submission service to implement savings for OP, Base, Worldchain, and other chains built on the OP Stack.\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'GasHawk improves the user and developer experience through intelligent submission strategies on ETH mainnet, OP, Base, and Seoplia. GasHawk is a versatile service designed for a wide range of users, including developers deploying contracts, artists releasing NFT collections, platforms, protocols, relayers, collectors, investors, and everyday users. GasHawk has successfully processed tens of thousands transactions for over 7,500 users. Additionally we have shown through a customized case study that at minimum GasHawk can save Optimism millions of dollars per year with our intelligent submission strategies for its sequencer address. As we continue research on blob based execution services we plan to create another public case study and show how that can create more savings/value for the OP ecosystem.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 6.093, + grant_1_amount: 10500, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xe2a811d58e02ae68d37e584117e9ebb6ec64192a2fea99f4c8881b163e61c74f', + id: '0xb4fc05ba3a42e23c1f272eeb8cf98a881bc5e4402d2eb5accdc52cd20624aedf', applicationId: - '0xe2a811d58e02ae68d37e584117e9ebb6ec64192a2fea99f4c8881b163e61c74f', + '0xb4fc05ba3a42e23c1f272eeb8cf98a881bc5e4402d2eb5accdc52cd20624aedf', projectId: - '0xd94d69cffd7c74f4c8337b7a09462b6dd5ebd877a94f379ab67ca4881a06f554', + '0x039dd46c72b1c02723e8f81a08b606a54b5f413c6756e60ba9e3a467dbbcf38b', category: 'Utility', applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'Gateway.fm', - organization_description: - 'We pioneer Web3 infrastructure to empower builders and organisations alike to harvest paramount utilities of blockchain technology. gateway.fm', + organization_name: 'Blocknative', + organization_description: '', organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/7888c17b-73d7-480f-8af8-aee473b9cb50.png', + 'https://storage.googleapis.com/op-atlas/67b75c95-4f8c-4cc9-9dca-2d4b12b2b682.png', organizationCoverImageUrl: '', - socialLinks_website: "['https://gateway.fm/']", - socialLinks_farcaster: "['https://warpcast.com/gateway-fm']", - socialLinks_twitter: 'https://x.com/gateway_eth', + socialLinks_website: [], + socialLinks_farcaster: [], + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['726637']", - name: 'Presto by Gateway.fm', + team: "['410300']", + name: 'Blocknative Decoding API', description: - 'Platform/Rollup as a Service product built by Gateway.fm enabling seamless deployments and maintenance of rollups based on several stacks including OP', + 'Blocknative is dedicated to building developer-friendly tools that enhance user experience and ecosystem growth. We specialize in creating innovative solutions for gas fee estimation across various blockchains and have been building, running, and maintaining advanced gas estimation and optimization infrastructure since 2021.', profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/74f9790e-98f6-4590-bf6d-64a67d313f36.png', + 'https://storage.googleapis.com/op-atlas/6445d309-3c48-429b-85c7-46b3013baeb7.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/1a925fdb-b228-43e0-b020-d754ec680758.png', - project_socialLinks_website: - "['https://gateway.fm/', 'https://presto.gateway.fm/']", - project_socialLinks_farcaster: "['https://warpcast.com/gateway-fm']", - project_socialLinks_twitter: 'https://x.com/gateway_eth', + 'https://storage.googleapis.com/op-atlas/514008b5-80bb-4cf3-87e8-45b4ce67beb3.png', + project_socialLinks_website: "['Blocknative.com']", + project_socialLinks_farcaster: "['https://warpcast.com/blocknative']", + project_socialLinks_twitter: 'x.com/blocknative', project_socialLinks_mirror: '', - pricingModel: 'pay_to_use', + pricingModel: 'free', impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", impactStatement_statement: - "[{'answer': 'Our Presto platform enables seamless deployment and ensures optimal operation of any deployed rollup. We have deployed and are maintaining an OP testnet used for testing and optimisation purposes, that will soon become available as a sandbox environment to our Presto users, to enable them testing and experimentation on OP based rollup.\\n\\nWe service any clients looking to deploy OP based rollups with enterprise grade solution and support and maintenance ensuring SLA, advisory, use case development and access to our numerous in house and 3rd party solutions and products.\\n\\nWe are servicing partners and customers coming from both native web3 space as well as bug enterprise including but not limited to fortune 500 companies.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'As mentioned we have recently implemented OP stack to our platform and have so far deployed our internal testnet to be offered to end users as well, and along we have deployed our first testnet for a customer. We are looking forward to supporting our partners with OP stack based rollup deployment and operations and use our extensive infrastructure expertise to optimise performance and improve the costs of OP based rollups.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + "[{'answer': 'The Blocknative Decoding API removes a significant barrier to entry for developers building on Optimism. By providing effortless decoding of complex transaction data, we empower developers to focus on building innovative applications instead of wasting time and resources on manual decoding.\\n\\n- Effortless Decoding: Our API eliminates the need for developers to manually decode bytes of data. We handle the complex computations and translate them into clear, human-readable JSON format.\\n- Reduced Dev Time: Developers can integrate our API and get started building L2 applications much faster.\\n- Improved DeEx: No more deciphering complex data formats or worrying about format changes. - - Enhanced Observability: Developers and end-users can track transaction status throughout the entire journey, from L2 to L1. This provides valuable insights for debugging and troubleshooting.\\n- Future-Proof: The Blocknative Decoding API automatically handles updates behind the scenes\\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Support for the Superchain Network: We currently support Optimism, Base, Mode, Zora, Kroma, and Blast making it a one-stop shop for Optimism Superchain L2 development. We are actively working on supporting more Superchains.\\n\\nIntegration into Optimism Documentation: Our API is featured in the official Optimism documentation for decoding, showcasing its value to the Optimism developer community.\\n\\nEthernow.xyz Integration: The Blocknative Decoding API powers the transaction decoding displayed on Ethernow.xyz, a popular platform for exploring how transactions settle onto the ETH L1.\\n\\nBy simplifying L2 development, the Blocknative Decoding API directly contributes to the growth and adoption of the OP Stack. We are committed to supporting the Optimism ecosystem and believe our API plays a crucial role in enabling developers to build the future of blockchain applications.\\n\\n\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: '1m-5m', + grant_1_amount: 99378, 'Column 1': '', 'Column 33': '', }, { isSelected: 'Rejected', - id: '0xe2ad55d517e5ae80f9a1c009a1368d661e7b4c951c2976090679307c29800c12', + id: '0xb8245308e1c3254dcff6ff8e2839cdf1db8337cbae359062241543eec883b909', applicationId: - '0xe2ad55d517e5ae80f9a1c009a1368d661e7b4c951c2976090679307c29800c12', + '0xb8245308e1c3254dcff6ff8e2839cdf1db8337cbae359062241543eec883b909', projectId: - '0x966804cb492e1a4bde5d781a676a44a23d69aa5dd2562fa7a4f95bb606021c8b', + '0xdf0dda3c4884be5e562f35b299dccd8bc4e468843197166b3fc87a93dd211055', category: 'Utility', - applicationCategory: 'ETHEREUM_CORE_CONTRIBUTIONS', + applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: 'libp2p', - organization_description: - "libp2p is an open source networking library used by the world's most important distributed systems such as Ethereum, IPFS, Filecoin, Optimism and countless others. There are native implementations in Go, Rust, Javascript, C++, Nim, Java/Kotlin, Python, .Net, Swift and Zig. It is the simplest solution for global scale peer-to-peer networking and includes support for pub-sub message passing, distributed hash tables, NAT hole punching and browser-to-browser direct communication.", - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/39689f3b-3e4c-48a2-ab37-f57b85998e69.png', - organizationCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/e8ef83e2-0eb0-48a2-b931-2221e8ae5ed9.png', - socialLinks_website: - "['https://libp2p.io', 'https://github.com/libp2p/libp2p']", - socialLinks_farcaster: [], - socialLinks_twitter: 'https://x.com/libp2p', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', socialLinks_mirror: '', - team: "['827799', '845866']", - name: 'libp2p Ecosystem', + team: '', + name: 'PORTERS', description: - 'A modular and extensible networking stack which solves many challenges of peer-to-peer applications. libp2p is widely deployed in many notable web3 projects such as Ethereum, Optimism, Filecoin, Polkadot, Celestia, and more. This a general application for the libp2p Core Fund, a vehicle which funds the libp2p ecosystem (implementations, development infrastructure, community outreach & events, etc.) both proactively and retroactively.', + "PORTERS is a developer-centric RPC gateway that offers fast and easy access to blockchain functionalities. PORTERS simplifies the creation and management of RPC endpoints for blockchain applications, allowing developers to focus on innovation without the hassle of backend complexities. PORTERS leverages the POKT Network's extensive node infrastructure, consisting of thousands of nodes globally, to provide its RPC services.", profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/dcee4e9a-3de0-4868-ad76-5d8d31467342.png', + 'https://storage.googleapis.com/op-atlas/d860e678-62c1-497e-880b-03339cb1387c.png', projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/509d70f7-242e-4812-ba2e-00805cae971e.png', + 'https://storage.googleapis.com/op-atlas/f508014c-f1e5-49b0-a284-63f0246da7f3.png', + project_socialLinks_website: "['https://porters.xyz']", + project_socialLinks_farcaster: "['https://warpcast.com/porters']", + project_socialLinks_twitter: 'https://x.com/PORTERSXYZ', + project_socialLinks_mirror: '', + pricingModel: 'freemium', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_statement: + "[{'answer': 'Projects can access decentralized, unstoppable and high quality RPC services in Base and Optimism through Porters via the POKT Network.\\n\\nFurthermore, we have initiated native RPC markets in Optimism and Base through chain-specific payment for RPC services through the $PORTR token deployed on OP and Base.\\n \\n', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'We enabled the POKT community to further decentralize their offering of RPC services for the Superchain and OP Stack by the development and operation of the PORTERS gateway. This fosters the integration and relevance of POKT for OP Stack builders.\\n\\nThrough the development of our Token Name Service API, we have enabled further growth and increased community engagement for the TKN DAO. It also enables the open source community around RaidGuild DAO to expedite the development of public goods projects in Base and Optimism.\\n\\nPORTERS also educates and empowers core impact infrastructure projects on the Superchain, such as Hypercerts, in DePIN RPC services for the provisioning of hypercerts to the public goods and Web3 community. Also highlighted by our ongoing efforts to enable Onchain Elephants to access resilient, censorship-resistant, and performant RPC services for funding the protection of elephants in Asia.\\n', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '', + 'Column 1': '', + 'Column 33': '', + }, + { + isSelected: 'Rejected', + id: '0xb9925193731f8998688d37bef30f6fa484e186c5b427c44ce8fa5e5ae609f326', + applicationId: + '0xb9925193731f8998688d37bef30f6fa484e186c5b427c44ce8fa5e5ae609f326', + projectId: + '0x6bd057da522918a4675396313ae33a2f2788a1ceeb3bd7ae228015e3eb317a7d', + category: 'Utility', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: 'wevm', + organization_description: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/d546477e-bfc2-4fb5-9ba1-e9624e94e608.png', + organizationCoverImageUrl: '', + socialLinks_website: [], + socialLinks_farcaster: [], + socialLinks_twitter: '', + socialLinks_mirror: '', + team: "['6143']", + name: 'Viem: TypeScript Tooling for OP Stack', + description: + 'Viem is the most used TypeScript Interface for Ethereum and the OP Stack. Viem provides robust, performant, and type-safe modules to be the foundation for building Web Applications, TypeScript Libraries, Wallets, Backends, Indexers, Scripts, and more, on top of Ethereum (and the OP Stack). With over 2.5 million monthly downloads, Viem is used in production by most at-scale (and small scale!) OP Stack projects like Optimism, Uniswap, Zora, Coinbase, Opensea, WalletConnect, Friend.tech, Rainbow, and so much more.', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/171f60c2-1e3e-4b0a-998e-4015a7f468f7.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/64c06023-a910-4646-ba3e-81baa2d935dc.png', + project_socialLinks_website: "['https://viem.sh']", + project_socialLinks_farcaster: "['https://warpcast.com/wevm']", + project_socialLinks_twitter: 'https://x.com/wevm_dev', + project_socialLinks_mirror: '', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_statement: + "[{'answer': \"Viem is a TypeScript-based integration tool for the OP Stack that provides interfaces for Applications to interact with the OP Stack protocol. Since RetroPGF 3, Viem has added support for Actions & Utilities to facilitate Withdrawals, Deposits, and other functionalities for the OP Stack. On top of this, Viem has liased closely with Optimism Labs to:\\n- integrate OP Stack Withdrawals and Deposits into Viem\\n- deprecate the Optimism TypeScript SDK for OP Stack, and migrate consumers to Viem,\\n- update Viem's OP Stack integration for the Fault Proofs (and permissioned fallback) upgrades\\n- assist with writing of documentation of OP Stack integration with Viem\\n\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Consumers of OP Viem include:\\n- Uniswap\\n- Sushiswap \\n- Optimism Bridge\\n- Superbridge (OP Stack bridge)\\n- Brid.gg (OP Stack bridge)\\n- Stripe\\n- Shopify Blockchain\\n- friend.tech\\n- Coinbase\\n- Coinbase Bridge \\n- Zora\\n- mint.fun\\n- many more...', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: 156463.05, + 'Column 1': '', + 'Column 33': '', + }, + { + isSelected: 'Rejected', + id: '0xcf3e15274565ac49b2d05237bceaa0c3d0b4d984691bbead7c724f0328fe452f', + applicationId: + '0xcf3e15274565ac49b2d05237bceaa0c3d0b4d984691bbead7c724f0328fe452f', + projectId: + '0xe88826f4dde8d4abaa647a68763a4826fbb446e977cc00017e63dde91556b48d', + category: 'Social', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', + socialLinks_mirror: '', + team: '', + name: 'Hedgio Podcast', + description: + "We launched the Hedgio Podcast two months ago, and it’s quickly gaining momentum, with each episode attracting 2-3k listeners across various platforms. The podcast focuses on educating both beginners and professionals in blockchain and cryptocurrency. We cover in-depth topics such as OP Stack, Optimistic Rollups, and their impact on Ethereum's ecosystem. By addressing technical subjects and comparing blockchain technologies with traditional systems, we aim to bridge the knowledge gap, and our growing audience demonstrates the value and impact of our content on the crypto community.", + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/a00a360c-7b74-4fc9-896a-c6652df70ffb.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/9be7d3fa-efda-4100-a238-8aaefa1dac95.png', project_socialLinks_website: - "['https://libp2p.io', 'https://github.com/libp2p/libp2p']", + "['https://open.spotify.com/show/29qTM8M07UYM5QveEEvuDQ']", project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'https://x.com/libp2p', + project_socialLinks_twitter: 'https://x.com/hedgio_fa', project_socialLinks_mirror: '', pricingModel: 'free', - impactStatement_category: 'ETHEREUM_CORE_CONTRIBUTIONS', + impactStatement_category: 'OP_STACK_TOOLING', impactStatement_subcategory: - "['Ethereum client implementations', 'Research which informs Ethereum core development']", + "['Services for deploying and hosting an OP Chain.']", impactStatement_statement: - "[{'answer': 'libp2p is a critical part of the Beacon Chain which powers Ethereum and is a core dependency of OP mainnet & OP stack. libp2p offers Ethereum and Optimism a modular, extensible, peer to peer networking stack across multiple programming languages.\\nThe ecosystems project serves as a coordination space between the various libp2p implementers e.g. the libp2p specs repo where optimizations to GossipSub (used in both Ethereum and Optimism) are made in the pubic, and other protocols (transports, multiplexers, etc.)\\nThis project enables ecosystem functions like retroPGF programs, CI/CD infrastructure for impls and interop, Github hosting, Discourse forums, hosting websites, Social media presence, as well as in-person libp2p Community events and the responsible disclosure security process. The ecosystem also coordinates across impls & community members. The libp2p Project is a key part of the OP and Ethereum stacks and ensures the security and resiliency of the distributed blockchain networks.', 'question': 'How does your project support, or is a dependency of, the OP Stack?'}, {'answer': 'The libp2p networking library is a critical piece of L1, L2, and many other related applications in the OP and Ethereum ecosystem. If the libp2p project ceased to exist, there would be no central organization coordinating the critical functions of maintaining and deploying the libp2p software. Furthermore, if libp2p ceased to exist, Ethereum, Optimism, and other chains would have to rely on bespoke networking stacks. libp2p offers re-usable, cross implementation, modular peer to peer networking in an application agonistic way, and without it, p2p networking would have to rely on custom solutions that may not be as widely deployed in production across multiple major decentralized networks.', 'question': 'How would it impact the OP Stack if your project ceased to exist?'}]", + "[{'answer': 'We are developing a platform that enables individuals to engage with cutting-edge blockchain technologies. Our mission is to bridge the knowledge gap by offering resources and tools that educate users on the most up-to-date advancements in the space. A primary focus of this platform has been Optimism and the OP Stack, which we’ve consistently highlighted as a key technology. To facilitate this, we organize sessions with well-known experts in the blockchain industry, where they introduce and demonstrate the latest tools within the OP Stack. These sessions not only serve to inform but also empower users to deploy and operate solutions using OP technology. By prioritizing Optimism’s infrastructure, we aim to create an accessible learning environment that accelerates innovation and adoption in the blockchain space. Through our content and expert-led discussions, participants can stay current with evolving tools and leverage them for testing, deployment, and scaling their projects.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Our podcast has a large Persian-speaking audience, spanning countries like Tajikistan, Iran, and Afghanistan. You can verify this through our active presence on Twitter, Telegram, and various podcast platforms. Many listeners benefit from the information we provide, especially on blockchain and OP Stack technologies. If needed, we can shift our focus even more toward unique aspects of Optimism and OP Stack, ensuring deeper engagement. With sufficient support, we also have the technical capability to develop an interactive platform, similar to coding challenge platforms or online courses, where users can onboard quickly into the Optimism ecosystem. This platform would guide users through OP Stack concepts, enabling them to actively participate and contribute to the community. Such a tool would not only educate but also empower developers to use Optimism’s infrastructure effectively.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', - grant_1_amount: 298137.85, + grant_1_amount: '', + 'Column 1': '', + 'Column 33': '', + }, + { + isSelected: 'Rejected', + id: '0xde7b3a40765064191246ddb590967ba43e97fc31c4a5c7359438c7ee72bb622c', + applicationId: + '0xde7b3a40765064191246ddb590967ba43e97fc31c4a5c7359438c7ee72bb622c', + projectId: + '0xd7a8e115b2b3772d7d5656d7798e349dcdedf2463302c78528c9e9686ab4efe3', + category: 'NFT', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: '', + organization_description: '', + organizationAvatarUrl: '', + organizationCoverImageUrl: '', + socialLinks_website: '', + socialLinks_farcaster: '', + socialLinks_twitter: '', + socialLinks_mirror: '', + team: '', + name: 'OmniHub', + description: + 'OmniHub NFT launchpad invites you to explore the boundless realms of creativity. Create your own collection in just a few clicks. This is where the future of art is born.', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/98782a35-819f-4d02-a2dd-9e0156308b63.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/197fe561-4691-45ed-806f-60ca9851859f.png', + project_socialLinks_website: + "['https://launchpad.omnihub.xyz/', 'https://omnihub.xyz/']", + project_socialLinks_farcaster: "['https://warpcast.com/omnihub']", + project_socialLinks_twitter: 'https://x.com/omni_hub', + project_socialLinks_mirror: '', + pricingModel: 'pay_to_use', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Services for deploying and hosting an OP Chain.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_statement: + "[{'answer': 'OmniHub NFT Launchpad infrastructure streamlines the testing, deployment, and operation of NFTs on Optimistic (OP) chains, making the process simple and efficient for creators.\\n\\nOmniHub NFT Launchpad provide scalable deployment, allowing NFT collections to be launched on OP chains with ease. Integrated testing environments let creators identify and fix issues before going live. Our AI-driven optimization enhances both performance and security. The automated deployment pipeline reduces errors and accelerates launches. Continuous monitoring ensures NFTs remain secure and operational post-deployment.\\n\\nThis allows creators to focus on their art while we manage the technical complexities of OP chain deployment.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'OmniHub NFT Launchpad opens the door to a world where everyone can unlock the full potential of NFTs. With its unique features, it transforms the traditional launchpad experience into an accessible, inviting users to explore and capitalize on the boundless possibilities within the NFT launchpad by OmniHub.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: 6.093, + 'Column 1': '', + 'Column 33': '', + }, + { + isSelected: 'Rejected', + id: '0xe2a811d58e02ae68d37e584117e9ebb6ec64192a2fea99f4c8881b163e61c74f', + applicationId: + '0xe2a811d58e02ae68d37e584117e9ebb6ec64192a2fea99f4c8881b163e61c74f', + projectId: + '0xd94d69cffd7c74f4c8337b7a09462b6dd5ebd877a94f379ab67ca4881a06f554', + category: 'Utility', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': 'OP_STACK_TOOLING', + organization_name: 'Gateway.fm', + organization_description: + 'We pioneer Web3 infrastructure to empower builders and organisations alike to harvest paramount utilities of blockchain technology. gateway.fm', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/7888c17b-73d7-480f-8af8-aee473b9cb50.png', + organizationCoverImageUrl: '', + socialLinks_website: "['https://gateway.fm/']", + socialLinks_farcaster: "['https://warpcast.com/gateway-fm']", + socialLinks_twitter: 'https://x.com/gateway_eth', + socialLinks_mirror: '', + team: "['726637']", + name: 'Presto by Gateway.fm', + description: + 'Platform/Rollup as a Service product built by Gateway.fm enabling seamless deployments and maintenance of rollups based on several stacks including OP', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/74f9790e-98f6-4590-bf6d-64a67d313f36.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/1a925fdb-b228-43e0-b020-d754ec680758.png', + project_socialLinks_website: + "['https://gateway.fm/', 'https://presto.gateway.fm/']", + project_socialLinks_farcaster: "['https://warpcast.com/gateway-fm']", + project_socialLinks_twitter: 'https://x.com/gateway_eth', + project_socialLinks_mirror: '', + pricingModel: 'pay_to_use', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.', 'Services for deploying and hosting an OP Chain.']", + impactStatement_statement: + "[{'answer': 'Our Presto platform enables seamless deployment and ensures optimal operation of any deployed rollup. We have deployed and are maintaining an OP testnet used for testing and optimisation purposes, that will soon become available as a sandbox environment to our Presto users, to enable them testing and experimentation on OP based rollup.\\n\\nWe service any clients looking to deploy OP based rollups with enterprise grade solution and support and maintenance ensuring SLA, advisory, use case development and access to our numerous in house and 3rd party solutions and products.\\n\\nWe are servicing partners and customers coming from both native web3 space as well as bug enterprise including but not limited to fortune 500 companies.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'As mentioned we have recently implemented OP stack to our platform and have so far deployed our internal testnet to be offered to end users as well, and along we have deployed our first testnet for a customer. We are looking forward to supporting our partners with OP stack based rollup deployment and operations and use our extensive infrastructure expertise to optimise performance and improve the costs of OP based rollups.', 'question': 'Who has used your tooling and how has it benefited them?'}]", + grant_1: '', + grant_1_link: '', + grant_1_amount: '1m-5m', 'Column 1': '', 'Column 33': '', }, @@ -6428,29674 +6428,33 @@ export const projects = [ category: 'Governance', applicationCategory: 'OP_STACK_TOOLING', 'PW subcategory': '#N/A', - organization_name: 'Optimism Design', - organization_description: '', - organizationAvatarUrl: - 'https://storage.googleapis.com/op-atlas/e36735c6-d940-44c9-926d-ccddca4123d9.png', - organizationCoverImageUrl: '', - socialLinks_website: [], - socialLinks_farcaster: [], - socialLinks_twitter: '', - socialLinks_mirror: '', - team: "['5779', '844381']", - name: 'Retro Funding Site Design', - description: - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/0396a5dd-24c9-4cd1-87ea-8c93b74bb130.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/447dce96-b7cf-462b-ae97-06308f42c105.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Services for deploying and hosting an OP Chain.']", - impactStatement_statement: - "[{'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: 'Rejected', - id: '0xfd189edce708749c2092c236127a9d9522bd06031d193e317baf34242d72e84e', - applicationId: - '0xfd189edce708749c2092c236127a9d9522bd06031d193e317baf34242d72e84e', - projectId: - '0x959c370aa6c127bdd45ba3fcf97242457ac09f0e3e12457b01f345bd10843c1c', - category: 'Social', - applicationCategory: 'OP_STACK_TOOLING', - 'PW subcategory': '#N/A', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'ArtGridz', - description: - "Dive into the new internet. Eternal and Yours.\nPreserving today for tomorrow using pixel art and blockchain storage.\n\nOur smart contract records every alteration for each pixel onchain using event emissions. These events are used to fetch the live state of the artwork and past artworks from finished canvases. A new canvas starts after all 10'000 pixels are claimed.", - profileAvatarUrl: - 'https://cdn.charmverse.io/user-content/e9e91a73-3525-4b78-a630-7886ebfc7937/a0f11e65-b793-4450-a471-47f5f739f74c/ArtGrids-Logo-1200px.png', - projectCoverImageUrl: - 'https://cdn.charmverse.io/user-content/e9e91a73-3525-4b78-a630-7886ebfc7937/31d91e49-c777-4f28-b01d-96dd5d773250/Kopie-von-ridz-(1).png', - project_socialLinks_website: "['https://artgridz.decentraplace.io']", - project_socialLinks_farcaster: "['https://warpcast.com/artgridz']", - project_socialLinks_twitter: 'artgridz', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: 'OP_STACK_TOOLING', - impactStatement_subcategory: - "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", - impactStatement_statement: - "[{'answer': \"Easy Accessibility: Through the integration of user-friendly tools like the ThirdWeb SDK ArtGridz reduces the complexity of blockchain interactions, making it more accessible to a broader audience. Coinbase paymaster helps us with sponsoring transaction and the transaction bundler with reducing friction.\\n\\nOnchain Storage: The platform's unique art storage method, with event emissions for each pixels alteration, allows for live & historical tracking of the onchain states of our artworks, showcasing innovation in how art can be stored directly on the blockchain.\\n\\nA Truth Machine: By offering a secure digital canvas, ArtGridz not only makes collaborative art creation more engaging but also demonstrates the potential of permanent data if curated by a strong community.\\n\\nThese contributions align with the goals of improving the OP Stack's usability and accessibility, making ArtGridz a strong candidate for Category 3.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'ArtGridz’s tooling has been embraced by both developers and artists, enhancing their ability to create fast, manage, and interact with digital art on the blockchain. The platform’s impact is evidenced by positive user feedback, increased onchain activity, and successful community collaborations. The integration of tools like the ThirdWeb SDK and Coinbase’s transaction bundler & paymaster has proven to be beneficial, reducing complexity and costs, thereby making blockchain technology more accessible to a broader audience and easy and fast to build for us developers.', 'question': 'Who has used your tooling and how has it benefited them?'}]", - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0x39dcea49de981733d6f74863a8bc1473e18ba11ec1ad0e0bd4622ab6226552f8', - applicationId: - '0x39dcea49de981733d6f74863a8bc1473e18ba11ec1ad0e0bd4622ab6226552f8', - projectId: - '0x54eef6526ed4a28f771e2bc9b4a18884afcd92437cbee5ea4175c0a6b8970ac2', - category: 'CeFi', - applicationCategory: '', - 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'Project application', - description: 'Description', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/35cd4647-7912-4039-9d38-89ee0c8d0c51.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/0d021184-8f33-4c8c-9670-9de7b12a8b49.png', - project_socialLinks_website: "['www.text.com']", - project_socialLinks_farcaster: "['www.text.com']", - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: 2342424248, - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0x697cbc5fd1f276c033ea45c901889eead0d75900abeeff034e4ff00140ef095b', - applicationId: - '0x697cbc5fd1f276c033ea45c901889eead0d75900abeeff034e4ff00140ef095b', - projectId: - '0xf2da6b1d4ab4bcc61b5318f3b2f2f7d568fb0e6a9fbf0ca240130160953ea8fa', - category: 'CeFi', - applicationCategory: '', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'Test link', - description: 'test', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/c2a7a5dd-7660-48a3-bf85-de86ecccf203.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/1f98c581-4462-41fa-ac9c-e73f54d72b4f.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0x83309b7c35ba912832d40a0c9ca3c94ebcd73d169e9b39bd01f5d95e096b07bd', - applicationId: - '0x83309b7c35ba912832d40a0c9ca3c94ebcd73d169e9b39bd01f5d95e096b07bd', - projectId: - '0x965d10dd8af44d0286af95744897ac7e066f92114c080c021e628f4af3eda298', - category: 'NFT', - applicationCategory: '', - 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'Nfts', - description: 'nft creation', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/39cfa64d-46e8-43a1-9bf8-baf6d41de613.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f43cc8a7-8575-45c8-843f-01f9830befd0.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: 'free', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0x98fcf3545132be6c7fee5e0164445eb0b414d983b2a5a3a2e4e694d9a2581c4f', - applicationId: - '0x98fcf3545132be6c7fee5e0164445eb0b414d983b2a5a3a2e4e694d9a2581c4f', - projectId: - '0xc1311ae4d779bb4a627759aaf66dfcd6da029a770adf015035d86e4c682f6a35', - category: 'CeFi', - applicationCategory: '', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'testf', - description: 'test one two there', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/4d72a71f-1b8a-4420-9d87-4b2ab1423d6d.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/ff136b10-0ca8-4479-8772-19bed8853a59.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0xa12edd4e01e572e23dd88650881778884bea6410ba06aa8f5aa2544a3e444398', - applicationId: - '0xa12edd4e01e572e23dd88650881778884bea6410ba06aa8f5aa2544a3e444398', - projectId: - '0x1c0db0217d2aafd77b89d864fb87ef9d52bca0a2fc05e6faabe22ac81ec49503', - category: 'CeFi', - applicationCategory: '', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'application status test', - description: 'test', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/7a7611ae-0bc9-4cae-b5f3-5ef5dd080957.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/ad3e85b2-0586-49d9-91b0-32f0bcd18527.png', - project_socialLinks_website: [], - project_socialLinks_farcaster: [], - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: 'test', - grant_1_link: '', - grant_1_amount: 'under-250k', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '#N/A', - id: '0xc50d4140e8bf03ab7be6ef7d4375033c7081217ab46a062437636dab12c8d1cc', - applicationId: - '0xc50d4140e8bf03ab7be6ef7d4375033c7081217ab46a062437636dab12c8d1cc', - projectId: - '0xb199463048fa09ea0bf66027e2e9b73c6268b342aaf77d5aa1088a0afd801e12', - category: 'CeFi', - applicationCategory: '', - 'PW subcategory': 'OP_STACK_TOOLING', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: 'first organization miojoijoijojojjoii', - description: 'test orgnization', - profileAvatarUrl: - 'https://storage.googleapis.com/op-atlas/47eaec09-452f-4b52-b58f-f715b0df9a9a.png', - projectCoverImageUrl: - 'https://storage.googleapis.com/op-atlas/f82f3597-938f-4537-b82d-76c1c51ae37e.png', - project_socialLinks_website: "['www.text.com']", - project_socialLinks_farcaster: [], - project_socialLinks_twitter: 'www.test.com', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', - organization_description: '', - organizationAvatarUrl: '', - organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', - socialLinks_twitter: '', - socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', - project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', - grant_1: '', - grant_1_link: '', - grant_1_amount: '', - 'Column 1': '', - 'Column 33': '', - }, - { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', - organization_name: '', + organization_name: 'Optimism Design', organization_description: '', - organizationAvatarUrl: '', + organizationAvatarUrl: + 'https://storage.googleapis.com/op-atlas/e36735c6-d940-44c9-926d-ccddca4123d9.png', organizationCoverImageUrl: '', - socialLinks_website: '', - socialLinks_farcaster: '', + socialLinks_website: [], + socialLinks_farcaster: [], socialLinks_twitter: '', socialLinks_mirror: '', - team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + team: "['5779', '844381']", + name: 'Retro Funding Site Design', + description: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/0396a5dd-24c9-4cd1-87ea-8c93b74bb130.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/447dce96-b7cf-462b-ae97-06308f42c105.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Services for deploying and hosting an OP Chain.']", + impactStatement_statement: + "[{'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -36103,13 +6462,15 @@ export const projects = [ 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', - applicationCategory: '', - 'PW subcategory': '', + isSelected: 'Rejected', + id: '0xfd189edce708749c2092c236127a9d9522bd06031d193e317baf34242d72e84e', + applicationId: + '0xfd189edce708749c2092c236127a9d9522bd06031d193e317baf34242d72e84e', + projectId: + '0x959c370aa6c127bdd45ba3fcf97242457ac09f0e3e12457b01f345bd10843c1c', + category: 'Social', + applicationCategory: 'OP_STACK_TOOLING', + 'PW subcategory': '#N/A', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36119,18 +6480,23 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', + name: 'ArtGridz', + description: + "Dive into the new internet. Eternal and Yours.\nPreserving today for tomorrow using pixel art and blockchain storage.\n\nOur smart contract records every alteration for each pixel onchain using event emissions. These events are used to fetch the live state of the artwork and past artworks from finished canvases. A new canvas starts after all 10'000 pixels are claimed.", + profileAvatarUrl: + 'https://cdn.charmverse.io/user-content/e9e91a73-3525-4b78-a630-7886ebfc7937/a0f11e65-b793-4450-a471-47f5f739f74c/ArtGrids-Logo-1200px.png', + projectCoverImageUrl: + 'https://cdn.charmverse.io/user-content/e9e91a73-3525-4b78-a630-7886ebfc7937/31d91e49-c777-4f28-b01d-96dd5d773250/Kopie-von-ridz-(1).png', + project_socialLinks_website: "['https://artgridz.decentraplace.io']", + project_socialLinks_farcaster: "['https://warpcast.com/artgridz']", + project_socialLinks_twitter: 'artgridz', project_socialLinks_mirror: '', - pricingModel: '', - impactStatement_category: '', - impactStatement_subcategory: '', - impactStatement_statement: '', + pricingModel: 'free', + impactStatement_category: 'OP_STACK_TOOLING', + impactStatement_subcategory: + "['Research or development that introduces new features, improvements, or capabilities to the OP Stack.', 'Tools that facilitate the deployment, operation, or testing of the OP Stack. This includes integration tools, load testing infrastructure, and scripts for node management.']", + impactStatement_statement: + "[{'answer': \"Easy Accessibility: Through the integration of user-friendly tools like the ThirdWeb SDK ArtGridz reduces the complexity of blockchain interactions, making it more accessible to a broader audience. Coinbase paymaster helps us with sponsoring transaction and the transaction bundler with reducing friction.\\n\\nOnchain Storage: The platform's unique art storage method, with event emissions for each pixels alteration, allows for live & historical tracking of the onchain states of our artworks, showcasing innovation in how art can be stored directly on the blockchain.\\n\\nA Truth Machine: By offering a secure digital canvas, ArtGridz not only makes collaborative art creation more engaging but also demonstrates the potential of permanent data if curated by a strong community.\\n\\nThese contributions align with the goals of improving the OP Stack's usability and accessibility, making ArtGridz a strong candidate for Category 3.\", 'question': 'How has the infrastructure you built enabled the testing, deployment, and operation of OP chains?'}, {'answer': 'ArtGridz’s tooling has been embraced by both developers and artists, enhancing their ability to create fast, manage, and interact with digital art on the blockchain. The platform’s impact is evidenced by positive user feedback, increased onchain activity, and successful community collaborations. The integration of tools like the ThirdWeb SDK and Coinbase’s transaction bundler & paymaster has proven to be beneficial, reducing complexity and costs, thereby making blockchain technology more accessible to a broader audience and easy and fast to build for us developers.', 'question': 'Who has used your tooling and how has it benefited them?'}]", grant_1: '', grant_1_link: '', grant_1_amount: '', @@ -36138,13 +6504,15 @@ export const projects = [ 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0x39dcea49de981733d6f74863a8bc1473e18ba11ec1ad0e0bd4622ab6226552f8', + applicationId: + '0x39dcea49de981733d6f74863a8bc1473e18ba11ec1ad0e0bd4622ab6226552f8', + projectId: + '0x54eef6526ed4a28f771e2bc9b4a18884afcd92437cbee5ea4175c0a6b8970ac2', + category: 'CeFi', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'ETHEREUM_CORE_CONTRIBUTIONS', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36154,12 +6522,14 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + name: 'Project application', + description: 'Description', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/35cd4647-7912-4039-9d38-89ee0c8d0c51.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/0d021184-8f33-4c8c-9670-9de7b12a8b49.png', + project_socialLinks_website: "['www.text.com']", + project_socialLinks_farcaster: "['www.text.com']", project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: '', @@ -36168,18 +6538,20 @@ export const projects = [ impactStatement_statement: '', grant_1: '', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 2342424248, 'Column 1': '', 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0x697cbc5fd1f276c033ea45c901889eead0d75900abeeff034e4ff00140ef095b', + applicationId: + '0x697cbc5fd1f276c033ea45c901889eead0d75900abeeff034e4ff00140ef095b', + projectId: + '0xf2da6b1d4ab4bcc61b5318f3b2f2f7d568fb0e6a9fbf0ca240130160953ea8fa', + category: 'CeFi', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36189,12 +6561,14 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + name: 'Test link', + description: 'test', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/c2a7a5dd-7660-48a3-bf85-de86ecccf203.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/1f98c581-4462-41fa-ac9c-e73f54d72b4f.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: '', @@ -36208,13 +6582,15 @@ export const projects = [ 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0x83309b7c35ba912832d40a0c9ca3c94ebcd73d169e9b39bd01f5d95e096b07bd', + applicationId: + '0x83309b7c35ba912832d40a0c9ca3c94ebcd73d169e9b39bd01f5d95e096b07bd', + projectId: + '0x965d10dd8af44d0286af95744897ac7e066f92114c080c021e628f4af3eda298', + category: 'NFT', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'OP_STACK_RESEARCH_AND_DEVELOPMENT', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36224,15 +6600,17 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + name: 'Nfts', + description: 'nft creation', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/39cfa64d-46e8-43a1-9bf8-baf6d41de613.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/f43cc8a7-8575-45c8-843f-01f9830befd0.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', - pricingModel: '', + pricingModel: 'free', impactStatement_category: '', impactStatement_subcategory: '', impactStatement_statement: '', @@ -36243,13 +6621,15 @@ export const projects = [ 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0x98fcf3545132be6c7fee5e0164445eb0b414d983b2a5a3a2e4e694d9a2581c4f', + applicationId: + '0x98fcf3545132be6c7fee5e0164445eb0b414d983b2a5a3a2e4e694d9a2581c4f', + projectId: + '0xc1311ae4d779bb4a627759aaf66dfcd6da029a770adf015035d86e4c682f6a35', + category: 'CeFi', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36259,12 +6639,14 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + name: 'testf', + description: 'test one two there', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/4d72a71f-1b8a-4420-9d87-4b2ab1423d6d.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/ff136b10-0ca8-4479-8772-19bed8853a59.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: '', @@ -36278,13 +6660,15 @@ export const projects = [ 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0xa12edd4e01e572e23dd88650881778884bea6410ba06aa8f5aa2544a3e444398', + applicationId: + '0xa12edd4e01e572e23dd88650881778884bea6410ba06aa8f5aa2544a3e444398', + projectId: + '0x1c0db0217d2aafd77b89d864fb87ef9d52bca0a2fc05e6faabe22ac81ec49503', + category: 'CeFi', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36294,32 +6678,36 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', + name: 'application status test', + description: 'test', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/7a7611ae-0bc9-4cae-b5f3-5ef5dd080957.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/ad3e85b2-0586-49d9-91b0-32f0bcd18527.png', + project_socialLinks_website: [], + project_socialLinks_farcaster: [], project_socialLinks_twitter: '', project_socialLinks_mirror: '', pricingModel: '', impactStatement_category: '', impactStatement_subcategory: '', impactStatement_statement: '', - grant_1: '', + grant_1: 'test', grant_1_link: '', - grant_1_amount: '', + grant_1_amount: 'under-250k', 'Column 1': '', 'Column 33': '', }, { - isSelected: '', - id: '', - applicationId: '', - projectId: '', - category: '', + isSelected: '#N/A', + id: '0xc50d4140e8bf03ab7be6ef7d4375033c7081217ab46a062437636dab12c8d1cc', + applicationId: + '0xc50d4140e8bf03ab7be6ef7d4375033c7081217ab46a062437636dab12c8d1cc', + projectId: + '0xb199463048fa09ea0bf66027e2e9b73c6268b342aaf77d5aa1088a0afd801e12', + category: 'CeFi', applicationCategory: '', - 'PW subcategory': '', + 'PW subcategory': 'OP_STACK_TOOLING', organization_name: '', organization_description: '', organizationAvatarUrl: '', @@ -36329,13 +6717,15 @@ export const projects = [ socialLinks_twitter: '', socialLinks_mirror: '', team: '', - name: '', - description: '', - profileAvatarUrl: '', - projectCoverImageUrl: '', - project_socialLinks_website: '', - project_socialLinks_farcaster: '', - project_socialLinks_twitter: '', + name: 'first organization miojoijoijojojjoii', + description: 'test orgnization', + profileAvatarUrl: + 'https://storage.googleapis.com/op-atlas/47eaec09-452f-4b52-b58f-f715b0df9a9a.png', + projectCoverImageUrl: + 'https://storage.googleapis.com/op-atlas/f82f3597-938f-4537-b82d-76c1c51ae37e.png', + project_socialLinks_website: "['www.text.com']", + project_socialLinks_farcaster: [], + project_socialLinks_twitter: 'www.test.com', project_socialLinks_mirror: '', pricingModel: '', impactStatement_category: '', diff --git a/src/rpgf5-data-import/icats-insert.ts b/src/rpgf5-data-import/icats-insert.ts index 174168b..ceefee5 100644 --- a/src/rpgf5-data-import/icats-insert.ts +++ b/src/rpgf5-data-import/icats-insert.ts @@ -41,34 +41,37 @@ export const main = async () => { console.log('Connected!'); - const nullPs = await prisma.project.findMany({ - select: { name: true }, - where: { type: 'project', implicitCategory: null }, - }); + // // const nullPs = await prisma.project.findMany({ + // // select: { name: true }, + // // where: { type: 'project', implicitCategory: null }, + // // }); - console.log(nullPs); + // // console.log(nullPs); // for (let i = 0; i < projects.length; i++) { // const project = projects[i]; // if (project.isSelected !== 'Approved') continue; // console.log('Project', i); // const exists = await prisma.project.findFirst({ - // where: { name: project.name, implicitCategory: null }, + // where: { name: project.name.trim() }, // }); - // if (exists) { - // await prisma.project.update({ - // where: { - // id: exists.id, - // }, - // data: { - // implicitCategory: project['PW subcategory'], - // }, - // }); + // if (!exists) { + // console.error(`${project.name} not in the db`); + // continue; // } + + // await prisma.project.update({ + // where: { + // id: exists.id, + // }, + // data: { + // implicitCategory: project['PW subcategory'], + // }, + // }); // } - // console.log(await implicitCatDist(prisma)); + console.log(await implicitCatDist(prisma)); await prisma.$disconnect(); }; diff --git a/src/rpgf5-data-import/index copy.ts b/src/rpgf5-data-import/index copy.ts index fee9c6e..e7269b4 100644 --- a/src/rpgf5-data-import/index copy.ts +++ b/src/rpgf5-data-import/index copy.ts @@ -1,4 +1,4 @@ -import { projects } from './all-projects'; +import { projects } from './all-projects-928'; import { projects as gProjects } from './gsheet'; // async function getAllProjects(): Promise { diff --git a/src/rpgf5-data-import/index.ts b/src/rpgf5-data-import/index.ts index 2de0632..ced1192 100644 --- a/src/rpgf5-data-import/index.ts +++ b/src/rpgf5-data-import/index.ts @@ -55,24 +55,8 @@ export const main = async () => { console.log('projects length', nonSpamProjects.length); - // const nonSpamProjects = projects - // .map((el) => ({ - // id: el.id, - // length: JSON.stringify(el).length, - // })) - // .sort((a, b) => b.length - a.length) - // .filter((el, i, self) => i < self.length * 0.7) - // .map((el) => projects.find((item) => item.id === el.id)!); - - // console.log(nonSpamProjects[0]); - for (let i = 0; i < nonSpamProjects.length; i++) { const project = nonSpamProjects[i]; - // if (project.CHECK !== '!PASS') continue; - // if (removed.findIndex((el) => el.Name === project.displayName) !== -1) { - // console.log(project.displayName, 'Is spam'); - // continue; - // } if (!(project['applicationCategory'] in categories)) { categories[project['applicationCategory']] = 1; @@ -84,13 +68,17 @@ export const main = async () => { console.log(categories); - // fs.writeFile('all-projects.json', JSON.stringify(nonSpamProjects), (err) => { - // if (err) { - // console.error('Error writing file', err); - // } else { - // console.log('JSON file saved successfully'); - // } - // }); + // fs.writeFile( + // 'all-projects-930.json', + // JSON.stringify(nonSpamProjects), + // (err) => { + // if (err) { + // console.error('Error writing file', err); + // } else { + // console.log('JSON file saved successfully'); + // } + // }, + // ); const prisma = new PrismaClient({ datasources: { diff --git a/src/rpgf5-data-import/temp-total.ts b/src/rpgf5-data-import/temp-total.ts new file mode 100644 index 0000000..ae8604f --- /dev/null +++ b/src/rpgf5-data-import/temp-total.ts @@ -0,0 +1,70 @@ +[ + { + userAddress: '0x43664B06911bd2f1F7Ee76CF6A82786106005A4f', + progress: 0.3374233128834356, + }, + { + userAddress: '0xA1179f64638adb613DDAAc32D918EB6BEB824104', + progress: 0.3392857142857143, + }, + { + userAddress: '0x7F37e3008207C27360b20ABCFB5fdCc8e37596B8', + progress: 0.3380281690140845, + }, + { + userAddress: '0xA4D506434445Bb7303eA34A07bc38484cdC64a95', + progress: 0.34285714285714286, + }, + { + userAddress: '0x839395e20bbB182fa440d08F850E6c7A8f6F0780', + progress: 0.33962264150943394, + }, + { + userAddress: '0x6D97d65aDfF6771b31671443a6b9512104312d3D', + progress: 0.3333333333333333, + }, + { + userAddress: '0x33d0EdC9d1F0407eD7bDD0637dE74cfdd24a56eE', + progress: 0.336734693877551, + }, + { + userAddress: '0x56EdF679B0C80D528E17c5Ffe514dc9a1b254b9c', + progress: 0.3333333333333333, + }, + { + userAddress: '0x7899d9b1181cbB427b0b1BE0684C096C260F7474', + progress: 0.3333333333333333, + }, + { + userAddress: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', + progress: 0.3380281690140845, + }, + { + userAddress: '0x8Eb9e5E5375b72eE7c5cb786CE8564D854C26A86', + progress: 0.3372093023255814, + }, + { + userAddress: '0xe53e89d978Ff1da716f80BaA6E6D8B3FA23f2284', + progress: 0.3357664233576642, + }, + { + userAddress: '0x00409fC839a2Ec2e6d12305423d37Cd011279C09', + progress: 0.3333333333333333, + }, + { + userAddress: '0x316131DC685A63B1dbC8E0Fc6B893ec51CF159DA', + progress: 0.34177215189873417, + }, + { + userAddress: '0x826976d7C600d45FB8287CA1d7c76FC8eb732030', + progress: 0.3333333333333333, + }, + { + userAddress: '0x1543c3446f436576417490a647987199685e0b8d', + progress: 0.33613445378151263, + }, + { + userAddress: '0x5C30F1273158318D3DC8FFCf991421f69fD3B77d', + progress: 0.3409090909090909, + }, +]; diff --git a/src/rpgf5-data-import/temp.ts b/src/rpgf5-data-import/temp.ts new file mode 100644 index 0000000..c2821bc --- /dev/null +++ b/src/rpgf5-data-import/temp.ts @@ -0,0 +1,34 @@ +[ + { + userAddress: '0x839395e20bbB182fa440d08F850E6c7A8f6F0780', + progress: 0.33962264150943394, + }, + { + userAddress: '0x56EdF679B0C80D528E17c5Ffe514dc9a1b254b9c', + progress: 0.3333333333333333, + }, + { + userAddress: '0x7899d9b1181cbB427b0b1BE0684C096C260F7474', + progress: 0.3333333333333333, + }, + { + userAddress: '0x8Eb9e5E5375b72eE7c5cb786CE8564D854C26A86', + progress: 0.3372093023255814, + }, + { + userAddress: '0xe53e89d978Ff1da716f80BaA6E6D8B3FA23f2284', + progress: 0.3357664233576642, + }, + { + userAddress: '0x00409fC839a2Ec2e6d12305423d37Cd011279C09', + progress: 0.3333333333333333, + }, + { + userAddress: '0x826976d7C600d45FB8287CA1d7c76FC8eb732030', + progress: 0.3333333333333333, + }, + { + userAddress: '0x5C30F1273158318D3DC8FFCf991421f69fD3B77d', + progress: 0.3409090909090909, + }, +]; diff --git a/src/rpgf5-data-import/update-metadata.ts b/src/rpgf5-data-import/update-metadata.ts index 32c9a42..a806fe0 100644 --- a/src/rpgf5-data-import/update-metadata.ts +++ b/src/rpgf5-data-import/update-metadata.ts @@ -70,7 +70,7 @@ export const main = async () => { console.log('Project', i); const project = projects[i]; const exists = await prisma.project.findFirst({ - where: { OR: [{ name: project.name, RPGF5Id: project.id }] }, + where: { OR: [{ name: project.name.trim(), RPGF5Id: project.id }] }, }); if (!exists) {