Chapter 02

Digital Memorial Platforms

弘益人間 · Benefit All Humanity

The Evolution of Digital Memorials

Digital memorial platforms represent a fundamental shift in how we honor and remember loved ones. While traditional memorials were confined to physical spaces—gravestones, monuments, memorial walls—digital memorials transcend geographic boundaries, temporal limitations, and physical constraints. They create permanent, accessible spaces where memories can be preserved, shared, and revisited indefinitely.

The concept of digital memorials emerged in the late 1990s with simple tribute websites, but has evolved into sophisticated platforms incorporating multimedia content, interactive features, social sharing capabilities, and preservation technologies. Modern digital memorial systems serve multiple purposes: they provide spaces for grief expression, facilitate collective mourning, preserve legacy and life stories, educate future generations, and create ongoing connections with the deceased.

Types of Digital Memorial Platforms

Digital memorials exist in various forms, each serving different needs and preferences. Understanding these categories helps designers create comprehensive memorial ecosystems:

Memorial Type Primary Purpose Key Features Target Users
Tribute Pages Share memories and condolences Photos, stories, comments, virtual candles, guestbook Family, friends, community members
Life Story Archives Document complete life narrative Timeline, biography, multimedia library, family tree integration Close family, genealogists, historians
Interactive Memorials Ongoing engagement with memory Virtual visits, anniversary reminders, collaborative projects Bereaved individuals seeking continued bonds
Legacy Preservation Long-term digital immortality Encrypted storage, perpetual hosting, blockchain verification Estate planners, digital legacy advocates
Social Media Memorials Transform existing profiles into memorials Profile conversion, tribute wall, memory sharing Social media users, younger generations
Virtual Cemeteries Digital equivalent of physical cemeteries Searchable directory, plot customization, virtual flowers Geographically dispersed families

Memorial Platform Architecture

Core System Design

Building a robust digital memorial platform requires careful architectural planning to ensure long-term sustainability, scalability, and preservation. The system must balance accessibility with privacy, permanence with flexibility, and individual control with community participation.

Memorial Platform Data Model - TypeScript
interface Memorial {
    // Core Identity
    memorialId: string;
    deceasedPerson: {
        fullName: string;
        preferredName?: string;
        birthDate: Date;
        deathDate: Date;
        birthPlace?: Location;
        deathPlace?: Location;
        occupation?: string;
        biography?: string;
    };

    // Memorial Configuration
    settings: {
        visibility: 'public' | 'private' | 'family_only' | 'invited_only';
        allowComments: boolean;
        moderationRequired: boolean;
        contributorPermissions: ContributorPermissions;
        archivalOptions: ArchivalSettings;
    };

    // Content Collections
    content: {
        photos: MediaItem[];
        videos: MediaItem[];
        audio: MediaItem[];
        documents: MediaItem[];
        stories: Story[];
        tributes: Tribute[];
        timeline: TimelineEvent[];
    };

    // Administrator Management
    administrators: {
        primary: UserId;
        secondary: UserId[];
        succession: SuccessionPlan;
    };

    // Engagement Tracking
    activity: {
        created: Date;
        lastUpdated: Date;
        totalVisits: number;
        totalContributions: number;
        recentVisitors: VisitorRecord[];
    };

    // Preservation Metadata
    preservation: {
        backupStatus: BackupStatus;
        storageProvider: string;
        archivalCommitment: 'perpetual' | 'fixed_term';
        blockchainVerification?: BlockchainRecord;
    };
}

interface MediaItem {
    mediaId: string;
    type: 'photo' | 'video' | 'audio' | 'document';
    url: string;
    thumbnailUrl?: string;
    caption?: string;
    uploadDate: Date;
    uploadedBy: UserId;
    metadata: {
        fileSize: number;
        mimeType: string;
        dimensions?: { width: number; height: number };
        duration?: number; // for video/audio
    };
    moderationStatus: 'pending' | 'approved' | 'rejected';
}

interface Story {
    storyId: string;
    title: string;
    content: string;
    author: UserId;
    authorRelationship?: string;
    submittedDate: Date;
    tags: string[];
    associatedPhotos?: string[]; // mediaIds
    reactions: Reaction[];
}

interface Tribute {
    tributeId: string;
    author: {
        name: string;
        relationship?: string;
        isAnonymous: boolean;
    };
    message: string;
    submittedDate: Date;
    virtualGift?: {
        type: 'candle' | 'flower' | 'prayer' | 'donation';
        metadata?: any;
    };
}

interface ContributorPermissions {
    whoCanUploadMedia: 'administrators' | 'family' | 'anyone';
    whoCanWriteStories: 'administrators' | 'family' | 'anyone';
    whoCanLeaveTributes: 'anyone' | 'registered_users' | 'invited_only';
    requireApproval: boolean;
}

interface SuccessionPlan {
    successors: Array<{
        userId: UserId;
        priority: number;
        notified: boolean;
    }>;
    automaticTransferDays: number; // Days of inactivity before transfer
    contingencyEmail?: string;
}

Memorial Creation Workflow

The process of creating a digital memorial must balance ease of use with comprehensive information collection. The WIA-MENTAL-011 standard defines a progressive workflow that guides users through memorial creation while respecting emotional state:

Memorial Creation Service Implementation
class MemorialCreationService {
    /**
     * Step 1: Basic Information Collection
     * Minimal required information to create memorial
     */
    async createMemorialBasic(data: BasicMemorialInfo): Promise {
        // Validate required fields
        this.validateBasicInfo(data);
        
        // Generate unique memorial ID
        const memorialId = await this.generateMemorialId();
        
        // Create initial memorial object
        const memorial: Memorial = {
            memorialId,
            deceasedPerson: {
                fullName: data.fullName,
                birthDate: data.birthDate,
                deathDate: data.deathDate
            },
            settings: this.getDefaultSettings(),
            content: this.initializeContentCollections(),
            administrators: {
                primary: data.creatorUserId,
                secondary: [],
                succession: this.createDefaultSuccessionPlan(data.creatorUserId)
            },
            activity: {
                created: new Date(),
                lastUpdated: new Date(),
                totalVisits: 0,
                totalContributions: 0,
                recentVisitors: []
            },
            preservation: {
                backupStatus: { lastBackup: new Date(), status: 'active' },
                storageProvider: 'primary',
                archivalCommitment: 'perpetual'
            }
        };
        
        // Save to database with encryption
        await this.database.saveMemorial(memorial);
        
        // Initialize backup
        await this.backupService.createInitialBackup(memorialId);
        
        // Send confirmation to creator
        await this.notificationService.sendMemorialCreated(
            data.creatorUserId,
            memorialId
        );
        
        return memorial;
    }

    /**
     * Step 2: Content Enrichment
     * Add photos, stories, and other memorial content
     */
    async addMemorialContent(
        memorialId: string,
        userId: string,
        content: MemorialContent
    ): Promise {
        // Verify user permissions
        await this.verifyPermissions(memorialId, userId, 'add_content');
        
        // Process and validate content
        const processedContent = await this.processContent(content);
        
        // Check for moderation requirements
        const requiresModeration = await this.checkModerationRequirements(
            memorialId,
            userId
        );
        
        if (requiresModeration) {
            // Queue for moderation
            await this.moderationService.queueForReview({
                memorialId,
                content: processedContent,
                submittedBy: userId,
                submittedAt: new Date()
            });
            
            // Notify administrators
            await this.notifyAdministrators(
                memorialId,
                'content_pending_approval'
            );
        } else {
            // Add content directly
            await this.addContentToMemorial(memorialId, processedContent);
            
            // Update search index
            await this.searchService.indexContent(memorialId, processedContent);
        }
        
        // Track contribution
        await this.analytics.trackContribution(memorialId, userId, content.type);
    }

    /**
     * Step 3: Privacy and Sharing Configuration
     * Configure who can view and contribute
     */
    async configureMemorialPrivacy(
        memorialId: string,
        userId: string,
        settings: PrivacySettings
    ): Promise {
        // Verify user is administrator
        await this.verifyAdministrator(memorialId, userId);
        
        // Validate settings
        this.validatePrivacySettings(settings);
        
        // Update memorial settings
        await this.database.updateMemorialSettings(memorialId, {
            visibility: settings.visibility,
            allowComments: settings.allowComments,
            moderationRequired: settings.moderationRequired,
            contributorPermissions: settings.contributorPermissions
        });
        
        // If changing to more restrictive, notify affected users
        if (this.isMoreRestrictive(settings)) {
            await this.notifyVisibilityChange(memorialId, settings);
        }
        
        // Update access control lists
        await this.accessControl.updatePermissions(memorialId, settings);
        
        // Log privacy change for audit
        await this.auditLog.record({
            action: 'PRIVACY_SETTINGS_CHANGED',
            memorialId,
            userId,
            newSettings: settings,
            timestamp: new Date()
        });
    }

    /**
     * Step 4: Succession Planning
     * Configure what happens to memorial over time
     */
    async setupSuccessionPlan(
        memorialId: string,
        userId: string,
        plan: SuccessionPlan
    ): Promise {
        // Verify primary administrator
        const memorial = await this.database.getMemorial(memorialId);
        if (memorial.administrators.primary !== userId) {
            throw new Error('Only primary administrator can set succession plan');
        }
        
        // Validate successor user IDs
        await this.validateSuccessors(plan.successors);
        
        // Notify proposed successors
        for (const successor of plan.successors) {
            await this.notificationService.sendSuccessionInvitation(
                successor.userId,
                memorialId,
                userId
            );
        }
        
        // Save succession plan
        await this.database.updateSuccessionPlan(memorialId, plan);
        
        // Schedule inactivity check
        await this.scheduler.scheduleInactivityCheck(
            memorialId,
            plan.automaticTransferDays
        );
    }

    /**
     * Helper: Process uploaded content
     */
    private async processContent(content: MemorialContent): Promise {
        const processed: ProcessedContent = {};
        
        if (content.photos) {
            // Resize and optimize images
            processed.photos = await Promise.all(
                content.photos.map(photo => this.imageService.optimize(photo, {
                    maxWidth: 1920,
                    maxHeight: 1080,
                    quality: 85,
                    generateThumbnail: true
                }))
            );
        }
        
        if (content.videos) {
            // Transcode videos to web-compatible formats
            processed.videos = await Promise.all(
                content.videos.map(video => this.videoService.transcode(video, {
                    format: 'mp4',
                    codec: 'h264',
                    resolution: '1080p',
                    generatePreview: true
                }))
            );
        }
        
        if (content.stories) {
            // Sanitize text content
            processed.stories = content.stories.map(story => ({
                ...story,
                content: this.sanitizeHtml(story.content)
            }));
        }
        
        return processed;
    }
}

Content Management and Moderation

Moderation Strategies

Digital memorials require sensitive content moderation to prevent spam, abuse, and inappropriate content while respecting the memorial's sacred nature. The WIA-MENTAL-011 standard defines multiple moderation approaches that can be configured based on memorial visibility and community size:

Moderation Level Review Process Best For Turnaround Time
No Moderation Content published immediately; retrospective review Private family memorials, trusted communities Instant publication
Automated Filtering AI-based content analysis; flag suspicious content Public memorials with high traffic < 1 minute
Administrator Review Memorial administrators approve all submissions Semi-public memorials, controlled sharing Hours to days
Professional Moderation Trained moderators review content for appropriateness High-profile memorials, public figures 1-4 hours
Community Moderation Contributors flag inappropriate content for review Large community memorials, memorial forests Variable based on reports

Long-Term Preservation

One of the most critical aspects of digital memorial platforms is ensuring perpetual preservation. Unlike physical monuments that may endure for centuries, digital content requires active maintenance, migration, and protection. The WIA-MENTAL-011 standard defines preservation requirements:

Redundant Storage: Memorial content must be stored in at least three geographically distributed locations using different storage providers to protect against regional disasters, provider failures, and data corruption. Minimum redundancy: primary storage, real-time backup, and cold storage archive.
Format Migration: As file formats become obsolete, memorial platforms must automatically detect and migrate content to current standards. For example, converting legacy video formats to modern codecs while preserving original files for authenticity.
Blockchain Verification: Optional but recommended: store cryptographic hashes of memorial content on blockchain networks to provide tamper-proof verification and prove content authenticity over decades or centuries.
Preservation Service Implementation
class MemorialPreservationService {
    /**
     * Multi-tier backup strategy
     */
    async performBackup(memorialId: string): Promise {
        const memorial = await this.database.getMemorial(memorialId);
        
        // Tier 1: Real-time replication
        const realtimeBackup = await this.replicationService.syncToReplica(
            memorial,
            'realtime-replica'
        );
        
        // Tier 2: Daily incremental backup
        const incrementalBackup = await this.backupService.createIncremental(
            memorial,
            'daily-backup'
        );
        
        // Tier 3: Weekly full backup to cold storage
        if (this.isWeeklyBackupDay()) {
            const coldStorage = await this.archivalService.archiveToGlacier(
                memorial,
                'long-term-archive'
            );
        }
        
        // Tier 4: Blockchain verification (optional)
        if (memorial.preservation.blockchainVerification) {
            const contentHash = await this.hashService.generateMerkleRoot(memorial);
            await this.blockchainService.recordHash(
                memorialId,
                contentHash,
                'ethereum' // or other blockchain
            );
        }
        
        return {
            success: true,
            timestamp: new Date(),
            backupLocations: [realtimeBackup, incrementalBackup],
            verificationHash: contentHash
        };
    }

    /**
     * Detect and migrate obsolete file formats
     */
    async migrateObsoleteFormats(memorialId: string): Promise {
        const memorial = await this.database.getMemorial(memorialId);
        const migrations: Migration[] = [];
        
        // Check all media items for obsolete formats
        for (const media of memorial.content.photos) {
            if (this.isObsoleteFormat(media.metadata.mimeType)) {
                // Preserve original
                await this.archiveOriginal(media);
                
                // Convert to modern format
                const converted = await this.convertMedia(media, {
                    targetFormat: this.getModernEquivalent(media.metadata.mimeType)
                });
                
                // Update memorial record
                await this.updateMediaReference(memorialId, media.mediaId, converted);
                
                migrations.push({
                    mediaId: media.mediaId,
                    from: media.metadata.mimeType,
                    to: converted.metadata.mimeType,
                    originalArchived: true
                });
            }
        }
        
        return {
            memorialId,
            migrationsPerformed: migrations.length,
            migrations,
            timestamp: new Date()
        };
    }

    /**
     * Verify memorial integrity
     */
    async verifyIntegrity(memorialId: string): Promise {
        const memorial = await this.database.getMemorial(memorialId);
        const issues: IntegrityIssue[] = [];
        
        // Check all media files exist and are accessible
        for (const media of this.getAllMedia(memorial)) {
            const exists = await this.storageService.fileExists(media.url);
            if (!exists) {
                issues.push({
                    type: 'missing_file',
                    mediaId: media.mediaId,
                    severity: 'critical'
                });
                
                // Attempt recovery from backup
                await this.attemptRecovery(memorialId, media.mediaId);
            }
            
            // Verify file integrity via checksum
            const currentChecksum = await this.hashService.computeChecksum(media.url);
            if (currentChecksum !== media.metadata.checksum) {
                issues.push({
                    type: 'corrupted_file',
                    mediaId: media.mediaId,
                    severity: 'high'
                });
                
                await this.attemptRecovery(memorialId, media.mediaId);
            }
        }
        
        return {
            memorialId,
            checkedAt: new Date(),
            filesChecked: this.getAllMedia(memorial).length,
            issuesFound: issues.length,
            issues,
            overallStatus: issues.length === 0 ? 'healthy' : 'degraded'
        };
    }
}
Sustainability Warning: Perpetual digital preservation is technically and financially challenging. Platforms must have sustainable business models, endowment funds, or community support structures to ensure memorials remain accessible for decades. Consider partnerships with libraries, archives, or heritage organizations for long-term sustainability.

Key Takeaways

  • Digital Memorials Transcend Physical Limitations: Unlike traditional monuments, digital memorials can be accessed globally, incorporate unlimited multimedia content, and enable ongoing participation from distributed communities.
  • Multiple Memorial Types Serve Different Needs: From simple tribute pages to comprehensive life archives, memorial platforms should support diverse memorial formats matching user intentions and relationship dynamics.
  • Privacy Configuration is Essential: Memorial administrators must have granular control over visibility, contribution permissions, and content moderation to balance openness with appropriate boundaries.
  • Succession Planning Ensures Continuity: Clear succession plans prevent memorial abandonment when primary administrators become inactive, ensuring memorials remain maintained across generations.
  • Multi-Tier Backup Protects Against Loss: Comprehensive preservation requires real-time replication, regular backups, cold storage archives, and optional blockchain verification to ensure perpetual accessibility.
  • Format Migration Prevents Obsolescence: Proactive monitoring and conversion of obsolete file formats ensures memorial content remains accessible as technology evolves over decades.

Review Questions

  1. Compare and contrast three different types of digital memorial platforms. What unique purposes does each serve, and what user populations would prefer each type?
  2. Explain the four-step memorial creation workflow defined in WIA-MENTAL-011. Why is this progressive approach preferable to collecting all information at once?
  3. What are the five moderation levels for memorial content, and when is each appropriate? How do these balance content quality with administrative burden?
  4. Describe the multi-tier backup strategy for memorial preservation. Why is each tier necessary, and what failure scenarios does each protect against?
  5. How does blockchain verification enhance memorial preservation? What are the limitations and costs associated with this approach?
  6. What is a succession plan in the context of digital memorials? Why is automatic transfer after inactivity important, and what risks does it mitigate?
  7. Explain the format migration process for obsolete media types. Why must original files be preserved alongside converted versions?

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.